Phone Lookup
Validate and retrieve detailed information about phone numbers including carrier data, number type (mobile, landline, VoIP), country code, and formatting validation, supporting international phone numbers across multiple regions.
Lookup a phone number
Lookup a phone number using multiple APIs. The first successful response will be returned.
GET
/
phone-lookup
Parameters
Name | Type | Description | Required |
---|---|---|---|
phone | string | Optional |
Response
{ "type": "object", "properties": { "valid": { "type": "boolean", "description": "Whether the phone number is valid", "example": true }, "countryPrefix": { "type": "string", "description": "The country prefix of the phone number", "example": "+45" }, "countryCode": { "type": "string", "description": "The country code of the phone number", "example": "DK" }, "countryName": { "type": "string", "description": "The country name of the phone number", "example": "Denmark" }, "location": { "type": "string", "description": "The location of the phone number", "example": "DK, Denmark" }, "carrier": { "type": "string", "description": "The carrier of the phone number", "example": "Telenor" }, "lineType": { "type": "string", "description": "The type of line of the phone number", "example": "mobile" } } }
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"