Domain Availability Checker (multi ltd)
Parameters
the domain name you are looking for without TLD
any tld u want to check with coma eg : com,net,org,uk,co,in,io etc
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"
}
]
🌐 Domain Availability Checker (Multi TLD) API – VebAPI
Check the availability of a domain name across multiple TLDs simultaneously with real-time, accurate results.
📝 Description
The Multi TLD Domain Availability Checker API allows you to verify whether a domain name is available across a list of Top-Level Domains (TLDs) in one request. The API supports thousands of TLDs (including .com
, .net
, .in
, .ai
, etc.) and delivers up-to-date status results instantly.
Perfect for domain search tools, brand name checkers, bulk lookup tools, and registrar integrations.
🎯 Key Benefits
-
⚡ Check domain availability across multiple extensions at once
-
🌍 Supports thousands of TLDs (generic, country-specific, new gTLDs)
-
📡 Real-time data — always fresh and accurate
-
🧰 Useful for domain registrars, bulk domain tools, and SaaS platforms
-
🔧 Simple integration into any frontend or backend system
🌐 Base URL
https://vebapi.com/api/tools/domainsearchmulti
📥 Input Parameters
Parameter | Type | Required | Description |
---|---|---|---|
domain |
string | ✅ Yes | The domain name without TLD. Example: getecz |
tlds |
string | ✅ Yes | Comma-separated list of TLDs to check. Example: com,net,org,in,us,uk |
Headers Required:
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
📤 Output Response
Returns a JSON array with the availability status for each domain+TLD pair.
Field | Type | Description |
---|---|---|
domain |
string | The queried domain name (without TLD) |
tld |
string | The TLD checked (e.g., com , net , uk ) |
status |
string | Availability status: Available or Taken |