Domain Availability Checker (multi ltd) API Documentation – SEO API - VebAPI

Domain Availability Checker (multi ltd)

Domain name availability checker API with 1000's of TLD, The data's are accurate , updated realtime. 

Domain Availability Checker (multi ltd)

GET

Domain name availability checker API with 1000's of TLD, The data's are accurate , updated realtime. 

GET /tools/domainsearchmulti

Parameters

domain
Required query
string

the domain name you are looking for without TLD

tlds
Required query
string

any tld u want to check with coma eg : com,net,org,uk,co,in,io etc

X-API-KEY
Required header
string

your vebapi api key

Example Request


curl -X GET "https://vebapi.com/api/tools/domainsearchmulti?domain=getecz&tlds=com,net,org,in,us,uk" \
    -H "X-API-KEY: YOUR_API_KEY" \
    -H "Content-Type: application/json"

Response

[
    {
        "domain": "getecz",
        "tld": "uk",
        "status": "Available"
    },
    {
        "domain": "getecz",
        "tld": "net",
        "status": "Available"
    },
    {
        "domain": "getecz",
        "tld": "in",
        "status": "Available"
    },
    {
        "domain": "getecz",
        "tld": "us",
        "status": "Available"
    },
    {
        "domain": "getecz",
        "tld": "com",
        "status": "Taken"
    },
    {
        "domain": "getecz",
        "tld": "org",
        "status": "Available"
    }
]