Get DNS zone information for a domain

Retrieve information about a specific domain's DNS zone, including its status. It returns a unique ID for subsequent API calls to manage cases or review settings, which is necessary to proceed with certain administrative actions.

Path Parameters

domain string required Example

Fully qualified domain name

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
401
error string
message string
code string
timestamp string
requestId string
404
error string
message string
code string
timestamp string
requestId string
nameservers array
429
error string
message string
retryAfter string
requestId string
504
error string
message string
code string
timestamp string
requestId string
GET https://cloud.hostup.se/api/dns/domain/{domain}
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/dns/domain/example17.com" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "zone": {
      "id": "string",
      "domain": "string",
      "status": "string"
    }
  }
}