📞 Carrier Lookup API

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.

📌 API Endpoint

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.

✅ Example Request

To look up the carrier for phone number (256) 281-1111, use this URL:

https://excellentnumbers.net/api/getcarrerlookup/authkey/101404g45574eb7bd17597.9316281693/number/(256) 281-1111

📥 Example Response

{
            "item": 1,
            "status": "OK",
            "number": "(256) 281-1111",
            "wireless": "n",
            "carrier": {
                "name": "Neutral Tandem",
                "id": 50724
            },
            "sms_address": null,
            "mms_address": null
        }

📖 How to Use This API

  1. Open your web browser.
  2. Enter the API URL with your phone number, like this:
    https://excellentnumbers.net/api/getcarrerlookup/authkey/AUTH_KEY/number/Number
  3. Press Enter and see the result displayed as JSON.
  4. You can copy this URL and paste it into applications or websites where needed.

📦 Integration Example

If you are using JavaScript, here is how you can fetch the result:

fetch('https://excellentnumbers.net/api/getcarrerlookup/authkey/101404g45574eb7bd17597.9316281693/number/(256) 281-1111')
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
        

📌 Notes

🔧 Testing Tool

📂 Result

Results will appear here...