v51

OpenAPI 3.0.0raw.githubusercontent.com2026-08-01267339950.6 KB
DNS: Snapshot

Get DNS snapshot

Retrieve particular DNS snapshot with contents of DNS zone records.

Use this endpoint to view historical DNS configurations for domains.

get/api/dns/v1/snapshots/{domain}/{snapshotId}

Path parameters

domainstring required
Example:mydomain.tld

Domain name

snapshotIdinteger required
Example:53513053

Snapshot ID

Response

Success response

idinteger

Snapshot ID

reasonstring

Reason of the update

created_atstring date-time

Example response

{
  "id": 5341,
  "reason": "Zone records update request",
  "snapshot": [
    {
      "name": "www",
      "records": [
        {
          "content": "mydomain.tld."
        }
      ],
      "ttl": 14400,
      "type": "A"
    }
  ],
  "created_at": "2025-02-27T11:54:22Z"
}