Domain Availability API Documentation
# Use this endpoint to make a GET requests to the API
https://api.apiverve.com/v1/domainavailability
Domain Availability Checker is a simple tool for checking the availability of a domain. It returns if the domain is available or not.
To use this API, you need an API key. You can get one by creating an account on apiverve.com and visiting your dashboard.
Important: Ensure that this API is enabled from within your dashboard to use it in your application. If not, you may receive a 403
error
{
"status": "ok",
"error": null,
"data": {
"domain": "myspace.com",
"available": false,
"owner": {
"registrar": "GoDaddy.com, LLC"
}
},
"code": 200
}
Check Domain Availability
Token Usage: 1
Check if a domain is available
QUERY PARAMETERS
Field | Type | Description |
---|---|---|
domain | string | (Required) The domain to check if it is available |
SAMPLE REQUEST QUERY
curl --request GET \
--url 'https://api.apiverve.com/v1/domainavailability?domain=myspace.com' \
--header 'x-api-key: YOUR_API_KEY'
RESPONSE CONTENT TYPES
The Domain Availability API supports the following response content types:
application/json
, application/xml
, application/yaml
You can specify the response content type by setting the Accept
header in your request. If you don't specify a content type, the API will default to application/json
.
Rate Limits
{
"status": "error",
"data": null,
"error": "Rate limit exceeded. Please upgrade your subscription plan."
}
Each subscription has its own rate limit. Your limit is based on your subscription plan (free or paid). If you exceed your limits, don't worry. You can always upgrade or downgrade at any time.
When you reach your limit, the service will stop responding and typically return an HTTP 429
response status code. The error will also contain a details JSON.
The Domain Availability API uses the following error code:
Error Code | Meaning |
---|---|
429 | You have exceeded your rate limit and further requests will be denied until the next cycle. |
Errors
For reference, the Domain Availability API uses the following error codes:
Error Code | Meaning |
---|---|
Code | Message |
200 | The request was successful. The response will include the requested data. |
400 | The request was invalid. The response will include a message that explains the error. |
401 | The request was not authorized. Usually, this means that the API key is missing or invalid. |
403 | This means that the request was trying to access a resource that it does not have permission to access. |
404 | This means that the resource you are trying to access does not exist. |
429 | This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request. |
500 | This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible. |