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
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"
}