Checks a domain for availability
GET /v1/domains/checks/
Checks a domain for availability
This method checks the availability of a domain name
Example
$ curl --header "Authorization: Bearer {token}" \
--header "Accept: application/json" \
https://api.checkdomain.de/v1/domains/checks/
Response
HTTP/1.1 200 OK
{
"domain": "www.test.de",
"status": "assigned"
}
Filters
Name |
Type |
Required |
Description |
domain
|
string
|
|
Domain name (FQDN)
|
Response
Name |
Type |
Required |
Description |
domain
|
string
|
|
Domain name (FQDN)
|
status
|
string
|
|
Domain availability
|
Status-Codes
Code |
Description |
200
|
Ok
|
400
|
Validation failed
|
500
|
Something on our end went wrong
|