Skip to main content
GET
/
registrar
/
v1
/
domains
/
{domain_name}
/
dnssec
Get DNSSEC records
curl --request GET \
  --url https://atom.com/api/registrar/v1/domains/{domain_name}/dnssec \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "domain_name": "example.com",
    "dnssec_enabled": true,
    "records": [
      {
        "key_tag": "40741",
        "algorithm": "13",
        "digest_type": "2",
        "digest": "cd3a761d64ec93d9d1c11339b9b9a1a0339e1dc8384fd61180d9795311659d77",
        "algorithm_name": "ECDSA Curve P-256 with SHA-256",
        "digest_type_name": "SHA-256"
      }
    ],
    "raw_records": "<array>"
  }
}

Authorizations

Authorization
string
header
required

Registrar API Bearer token. Obtain from dashboard at /dashboard/seller/api-access after requesting Registrar API access.

Path Parameters

domain_name
string
required

Domain name (e.g., 'example.com')

Response

Successful operation

success
boolean
Example:

true

data
object