This API allows you to look up phone carrier information using a phone number. It's simple to use and does not require programming knowledge.
GET https://excellentnumbers.net/api/getcarrerlookup/authkey/AUTH_KEY/number/Number
Replace {Number}
with the phone number you want to look up.
Replace {AUTH_KEY}
with the API key.
To look up the carrier for phone number 520206662222
, use this URL:
https://excellentnumbers.net/api/getcarrerlookup/authkey/101404g45574eb7bd17597.9316281693/number/520206662222
{ "item": 1, "status": "OK", "number": "15202066622", "wireless": "n", "carrier": { "name": "Neutral Tandem", "id": 50724 }, "sms_address": null, "mms_address": null }
https://excellentnumbers.net/api/getcarrerlookup/authkey/AUTH_KEY/number/Number
If you are using JavaScript, here is how you can fetch the result:
fetch('https://excellentnumbers.net/api/getcarrerlookup/authkey/101404g45574eb7bd17597.9316281693/number/520206662222') .then(response => response.json()) .then(data => console.log(data)) .catch(error => console.error('Error:', error));
Results will appear here...