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

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

phone number validation
carrier information
country code
line type
vehicle make and model
year and specifications

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "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

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
const url = "https://api.veriphone.io/v2/verify?phone=+14155552671&key=YOUR_API_KEY";
// 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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

401 Invalid key The API key is missing or incorrect.
Register at veriphone.io, copy your key from the dashboard, and pass it as ?key=YOUR_API_KEY.
phone_valid: false for a known number Phone was passed without the + and country code prefix.
Always include the leading + and country code, e.g. +1 for US numbers.
429 Rate limit exceeded Too many requests in a short window.
Spread your requests over time or upgrade to a paid plan for higher throughput.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS YES
Category Phone
Difficulty Intermediate
Listing details not endpoint-verified

Related Tags

Similar APIs

View All →