Check availability of domain names and top-level domains

Check if a specific domain name is available for registration, along with a list of desired top-level domains (TLDs). This endpoint returns a jobId you use to retrieve the result via GET /api/domain-check/{jobId}.

Headers

Accept Example
Content-Type Example

Body

required
application/json
sld string required
tlds array required

Responses

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