Phone Number Identity

GET https://botblocker.pro/api/v1/phone

This endpoint allows you to identify both national and international phone numbers. The provided data is accurate and reliable.

Note: This API request is not free and will count against your available request quota.

Query Parameters

Name
Type
Description

apikey*

string

Your API Key generated from BotBlocker.Pro Developer page.

number*

number

Phone number to indentity with country ode (e.g., 18884827768).

cURL Example

curl -X GET "https://botblocker.pro/api/v1/phone?apikey={apikey}&number={number}"

Response

{
    "data": {
        "account": {
            "account": {
                "package": "Elite",
                "expired": "Fri, 11 Mar 2022 - 12:00 AM",
                "quota": {
                    "available": 846355,
                    "total_usage": 253645
                }
            },
            "total_usage": 253645
        },
        "info": {
            "phone": "18884827768",
            "phone_valid": true,
            "phone_type": "toll_free",
            "phone_region": "",
            "country": "United States of America",
            "country_code": "US",
            "country_prefix": "+1",
            "international_number": "+1 888-482-7768",
            "local_number": "(888) 482-7768",
            "carrier": "",
            "timezone": "America\/Adak"
        }
    },
    "meta": {
        "code": 200,
        "message": "OK"
    }
}

Last updated