Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the NumValidate Phone Number Validation API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnumvalidate.com%2Fnumvalidate" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fnumvalidate.com%2Fnumvalidate" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with NumValidate Phone Number Validation API.
Validate the format of a phone number for a given country
List every country supported by the validator
Filter form submissions for malformed phone numbers
Confirm international dialling format before storing a contact
Power a country picker on a registration form
GET STARTED
Patterns agents use NumValidate Phone Number Validation API for, with concrete tasks.
★ Lightweight Form Validation
Indie apps and side projects validate phone-number format at signup by calling GET /validate before persisting the contact. NumValidate's free tier and minimal surface area make it appealing when carrier-level enrichment is unnecessary. The /countries endpoint feeds a country-picker on the same form.
Call GET /validate with the user's phone number, reject the signup if the response indicates an invalid format
Country Picker Population
Front-end forms call GET /countries on first load to populate a country selector with the exact list NumValidate supports. Pairing the picker with the validator means the user never picks a country the API cannot handle, eliminating a class of validation errors.
Call GET /countries, render a dropdown with the returned list, and use selected country alongside GET /validate
Agent-Driven Phone Hygiene
An AI agent cleaning a CRM iterates over contact records and validates phone format through Jentic. Records that fail validation are flagged for human review. The agent searches Jentic, loads GET /validate, and processes records in a loop without writing any HTTP boilerplate.
Search Jentic for 'validate phone number format', load the schema for GET /validate, and execute for each contact in the CRM batch
2 endpoints — jentic publishes the only available openapi specification for numvalidate phone number validation api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/validate
Validate a phone number
/countries
List supported countries
/validate
Validate a phone number
/countries
List supported countries
What agents get from Jentic-routed access to this vendor.
Setup
Wiring NumValidate by hand means setting up its x-api-token header auth and handling the request wiring against numvalidate.com/api yourself. Through Jentic you install once, import NumValidate from the API Directory, store the token once, and your agent calls it.
Permission scoping
NumValidate carries no resource id in its paths, so scope the agent to the operations it needs: you can allow the phone format validation and supported-country lookup and leave everything else out. You choose the operations it may call, so it only reaches the endpoints you list.
Credential isolation
Your NumValidate token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'validate phone format' or 'list supported phone countries', and Jentic returns the matching NumValidate operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using NumValidate Phone Number Validation API through Jentic.
Why is there no official OpenAPI spec for NumValidate?
NumValidate does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call NumValidate Phone Number Validation API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does NumValidate use?
The spec declares an apiToken apiKey scheme. Through Jentic the token is stored encrypted in the vault and injected at execution time, so it never enters the agent's context.
Can I see which countries NumValidate supports?
Yes. Call GET /countries to retrieve the full list of supported countries. Use the response to populate a country picker on your form so users only choose values the validator can handle.
How do I validate a phone number through Jentic?
Search Jentic for 'validate phone number format', load the schema for GET /validate, and execute with the phone number string. Jentic returns the parsed validation result without you needing to handle the auth header directly.
Does NumValidate return carrier or line type information?
No. NumValidate focuses on format validation and returns whether the number parses correctly for its country. If the agent needs carrier or line type, use a richer service such as NumLookupAPI or Twilio Lookup instead.
What are the rate limits for NumValidate?
The OpenAPI spec does not declare explicit rate limits. NumValidate applies free-tier limits per token in production; check the dashboard at numvalidate.com to confirm the quota for your account.
Can I limit what my agent is allowed to do with the NumValidate Phone Number Validation API?
Yes. NumValidate has no resource id in its paths, so with your self-hosted Jentic One you scope the agent by choosing which operations it may call. You can allow only phone-format validation (GET /validate) and supported-country lookup (GET /countries), or grant just one of them, and the agent can never reach an endpoint you did not list. Your own rules and your stored API token decide exactly what the agent is permitted to do.
Know of an official OpenAPI document? Contribute it →
For Agents
Validate phone-number formats against country rules and list supported countries through two simple GET calls.
Use for: Validate a phone number against country format rules, List all countries supported by NumValidate, Check whether a phone string is correctly formatted, Find the country code list for a phone-input dropdown
Not supported: Does not send SMS, return carrier or line type, or place calls - use for phone-format validation and supported-country lookup only.
Jentic publishes the only available OpenAPI specification for NumValidate Phone Number Validation API, keeping it validated and agent-ready. NumValidate is a free phone-number validation REST API that confirms whether a number is correctly formatted for a given country and returns the list of supported countries. The API exposes two GET endpoints: one to validate a phone string and one to enumerate supported countries for client-side selection. It is a lightweight choice for hobby projects, internal tools, and lead-form filtering where deep carrier data is not required.