Get DNSSEC information for a specific domain.

This endpoint retrieves DNSSEC settings for a specific domain, returning information necessary to verify the domain's security and integrity. You need to provide the domain ID to use this endpoint.

Path Parameters

domainId integer · min: 1 required Example

Unique domain identifier

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
GET https://cloud.hostup.se/api/domains/{domainId}/dnssec
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/20292/dnssec" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "domain": "string",
    "dnssec": {
      "ds": [
        {
          "id": "string",
          "key_tag": "string",
          "algorithm": "string",
          "digest_type": "string",
          "digest": "string"
        }
      ],
      "key": [
        "string"
      ],
      "type": "string"
    }
  }
}