Validate phone numbers from 200+ countries. Returns validity status, formatted number, country, carrier information, and line type (mobile, landline, VoIP).
{
"status": "ok",
"error": null,
"data": {
"country": "US",
"detectedCountry": "US",
"countryName": "United States",
"countrycode": 1,
"numberNational": 8165551017,
"extension": null,
"isvalid": true,
"isMobile": true,
"type": "fixed_line_or_mobile",
"formatted": {
"international": "+1 816-555-1017",
"national": "(816) 555-1017",
"rfc": "tel:+1-816-555-1017",
"e164": "+18165551017"
}
}
}






Validate phone numbers from 200+ countries. Returns validity status, formatted number, country, carrier information, and line type (mobile, landline, VoIP).
A single authenticated GET with the location you care about — no SDK required.
GET /v1/phonenumbervalidator?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ country, detectedCountry, countryName, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseValidate phone format and structure at registration time, before sending verification SMS.
Validate and format all numbers before sending, filtering out landlines and invalid entries.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/phonenumbervalidator?number=816-555-1017&country=us", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
Learn about E.164, national formats, and international dialing standards.
Understanding different phone line types and their implications for your application.
How carrier information helps with SMS routing, fraud detection, and cost optimization.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog