v52

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-03269339953.6 KB
DNS: Zone

Get DNS records

Retrieve DNS zone records for a specific domain.

Use this endpoint to view current DNS configuration for domain management.

get/api/dns/v1/zones/{domain}

Path parameters

domainstring required
Example:mydomain.tld

Domain name

Response

Success response

namestring

Name of the record (use @ for wildcard name)

ttlinteger

TTL (Time-To-Live) of the record

type'A' | 'AAAA' | 'CNAME' | 'ALIAS' | 'MX' | 'TXT' | 'NS' | 'SOA' | 'SRV' | 'CAA'

Type of the record

Example response

[
  {
    "name": "www",
    "records": [
      {
        "content": "mydomain.tld."
      }
    ],
    "ttl": 14400,
    "type": "A"
  }
]