Numlookup API Documentation

Phone Lookup

This API endpoint can be used to get owner's full name and phone carrier information.

API Endpoint URL

Please use the endpoing URL below for Reverse Phone Lookup. The request method of this call needs to be "POST".

https://www.numlookup.com/api/v1/phone

API Key

Each API request is authenticated by an 'apikey' in the request header.

Parameter

The 'phone' to be sent as a POST parameter to the API endpoint.

Example CURL

curl -X POST \
-H "ApiKey: {API-KEY}" \
-H "Content-Type: application/json" \
-d '{"phone":"+14692867117"}' \
https://www.numlookup.com/api/v1/phone

Example Response

{
   "status":"success",
   "response":{ 
      "owner_name"      : "ADAM,BARBARA",
      "country_code"    : "US",
      "phone_number"    : "+13141234567",
      "national_format" : "(314) 123-4567",
      "carrier_name"    : "T-Mobile USA, Inc.",
      "carrier_type"    : "mobile"
   }
}