Phone Number Validation
Query for and validate phone numbers.
Query parameters
API Key
Your unique identifier that allows access to our APIs.
Begins ak_. Available from your dashboard
Specifies the phone number to validate. Phone number must include a country code in acceptable format. For instance, UK phone numbers should be suffixed +44, 44 or 0044.
When set to true the current network of the phone number will be retrieved and populated.
Note that this operation is potentially slow depending on the network and local conditions.
** Tags ** A comma separated list of tags to query over.
Useful if you want to specify the circumstances in which the request was made.
If multiple tags are specified, the response will only comprise of requests for which all the tags are satisfied - i.e. searching "foo,bar" will only query requests which tagged both "foo" and "bar".
Response
Success
Example response
{
"result": {
"valid": true,
"national_format": "020 7112 8019",
"international_format": "+44 20 7112 8019",
"iso_country": "GBR",
"iso_country_2": "GB",
"country": "United Kingdom",
"current_carrier": {
"network_code": null,
"name": "Invomo Ltd",
"country": "GB",
"network_type": "landline"
},
"original_carrier": {
"network_code": null,
"name": "Invomo Ltd",
"country": "GB",
"network_type": "landline"
}
},
"code": 2000,
"message": "Success"
}