📞Phone Lookup API

Get carrier and location info for any phone number.

The API host for all tools is tools.datalabs.net.


Phone Lookup API

POST https://tools.datalabs.net/phoneLookup
Host: tools.datalabs.net
Content-Type: application/json

{
  "key": "DATALABS_API_KEY", // Required - DataLabs API Key
  "number": "+15553058172" // Required - Phone number with "+" and country code.
}
Example Response
{
    "success": true,
    "details": {
        "valid": true,
        "number": "1XXXXXXXXXX",
        "international_format": "+1XXXXXXXXXX",
        "country_code": "US",
        "country_name": "USA",
        "region": "Milam",
        "city": "Milano, TX",
        "carrier": "Level 3 Communications, Landline",
        "provider": "UNITED STATES"
    }
}

Last updated