Veriphone API
Overview
Veriphone is a phone number validation API that also returns carrier and line-type details for numbers worldwide. It lets you check if a phone number is real and active, which helps reduce fraud in sign-up forms. Even the free tier supports a meaningful number of lookups per month.
Beginner Tip
Start with the free plan—it includes 1,000 verifications per month, which is plenty for testing. Include the country code as a separate parameter if you are not certain the number has one embedded.
Available Data
Example Response
{
"make": "Toyota",
"model": "Camry",
"year": 2025,
"engine": "2.5L 4-cylinder",
"fuel_economy": {
"city_mpg": 28,
"highway_mpg": 39
},
"msrp": 28400
} Field Reference
phone The normalized version of the phone number you submitted. phone_valid true if the number passes all validation checks. phone_type Line type: mobile, fixed_line, voip, or unknown. carrier Carrier name if detectable, e.g. T-Mobile. country ISO 3166-1 alpha-2 country code, e.g. US. country_code International calling code for the country, e.g. 1 for the US. Implementation Example
const url = "https://veriphone.io/";
// 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.
Numverify
⭐ Beginner's PickNumverify 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.
Phone Validation
⭐ Beginner's PickPhone Validation by Abstract API lets you verify phone numbers from countries around the world with a single API call.
Phone Specification
⭐ Beginner's PickPhone Specification API is a free REST API that returns detailed hardware and software specifications for thousands of smartphone models.