Numverify API
Overview
Numverify is a phone number validation API that checks whether a phone number is valid and returns carrier, location, and line type information for numbers from over 200 countries. It is easy to use — just append a phone number and your API key to the endpoint URL. Numverify is widely used in signup forms to reduce fake registrations.
Beginner Tip
Always include the country code with the phone number (e.g., 14158586273 for a US number) to get accurate validation results.
Available Data
Example Response
{
"input": "[email protected]",
"is_valid": true,
"format_valid": true,
"details": "Input passes all validation checks"
} Field Reference
valid Whether the phone number is a valid, dialable number. number The phone number in international E.164 format. country_code ISO 2-letter country code where the number is registered. carrier The name of the telecom carrier associated with the phone number. line_type The type of phone line: mobile, landline, or special_services. Implementation Example
const url = "https://numverify.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Explore More
Similar APIs
View All →Cloudmersive Validate
⭐ Beginner's PickCloudmersive Validate API provides international phone number validation with detailed parsing, including country code detection, formatting, and line type identification.
Phone Validation
⭐ Beginner's PickPhone Validation by Abstract API lets you verify phone numbers from countries around the world with a single API call.
Veriphone
⭐ Beginner's PickVeriphone is a phone number validation API that also returns carrier and line-type details for numbers worldwide.
Phone Specification
⭐ Beginner's PickPhone Specification API is a free REST API that returns detailed hardware and software specifications for thousands of smartphone models.