Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / NumValidate Phone Number Validation API
NumValidate Phone Number Validation API logo

NumValidate Phone Number Validation API

★ Only Publicly Available OpenAPI DocumentData EnrichmentContact EnrichmentapiKey2 EndpointsREST

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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the NumValidate Phone Number Validation API to your agent

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.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

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

Use Cases

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

Key Endpoints

2 endpoints — jentic publishes the only available openapi specification for numvalidate phone number validation api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/validate

Validate a phone number

GET

/countries

List supported countries

GET

/validate

Validate a phone number

GET

/countries

List supported countries

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

NumValidate API tokens are stored encrypted in the Jentic vault. Agents call /validate and /countries with scoped tokens, so the raw token never lands in the agent context.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'validate phone format' or 'list supported phone countries' and Jentic returns the matching NumValidate operation with its schema.

Time to first call

Time to first call

Direct NumValidate integration: a few hours. Through Jentic: under 10 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

NumLookupAPI

→

Phone validation with carrier and line-type metadata across 230+ countries

Choose NumLookupAPI when the agent needs carrier and line type; choose NumValidate when format-only validation is enough and you want a free tier.

Alternative

numverify

→

Phone validation with carrier and country detail via apilayer

Pick numverify if the workflow already uses other apilayer products; pick NumValidate for the simplest possible format check.

Alternative

Abstract API

→

Validation suite covering phones, emails, IPs, and more in one product

Use Abstract API when several validation types are needed in one stack; use NumValidate for a focused phone-only validator.

FAQs

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 at https://app.jentic.com/sign-up.

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.

GET STARTED

Start building with NumValidate Phone Number Validation API

Explore with Jentic
View OpenAPI Document