Get DNSSEC auto-management status for a domain

Check the status of automatic DNSSEC activation for a specific domain. This helps determine if DNSSEC is active, pending, or if there are any issues.

Domain Services DNS

Context

Where to get IDs / values

Path Parameters

domainId integer · min: 1 required Example: 20292

Unique domain identifier

Headers

Accept Example
Content-Type Example

Responses

200
data object required
data.blocked_until string · nullable required · Example: 2026-02-10 00:00:00

Nullable: may be null when not applicable.

data.dnssec_status string · enum required · Example: active
active
error
excluded
data.domain string required · Example: example.com
data.is_blocked boolean · Example: false
data.last_checked string required · Example: 2026-02-10 00:00:00
data.last_error string · nullable required · Example: - Verifierar i föräldrazon... OK. - TLD detekterad:.se (använder DS-poster) - Hämtar KS...

Nullable: may be null when not applicable.

data.nameservers_changed_at string · nullable required · Example: 2026-02-10 00:00:00

Nullable: may be null when not applicable.

requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

GET https://cloud.hostup.se/api/domains/{domainId}/dnssec-auto
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/domains/20292/dnssec-auto" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "domain": "example.com",
    "dnssec_status": "active",
    "last_checked": "2026-02-10 00:00:00",
    "last_error": null,
    "nameservers_changed_at": "2026-02-10 00:00:00",
    "blocked_until": null,
    "is_blocked": false
  }
}