Check domain availability for registration

Quickly check if a desired domain name is available. The service returns a unique ID required to retrieve the final result from a follow-up call, necessary for completing domain registration.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domain string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/domain-exists
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-exists" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "exists": true
  }
}
Request Body
{
  "domain": "string"
}