Retrieves a paginated list of DNS changes detected for the specified domain. DNS changes track modifications to domain DNS records such as A, AAAA, MX, TXT, CNAME, NS records and other DNS configuration changes.
You can obtain your API Token from your Domainwarden account settings.
The ID of the domain.
The ID of the domain.
Number of items per page (default: 15, max: 100).
20
Page number for pagination.
1
[
{
"id": "019a11e5-1234-5678-9012-123456789012",
"domain_id": 1,
"field_changed": "a_records",
"field_changed_human": "A",
"old_value": "[{\"host\":\"@\",\"value\":\"192.0.2.1\",\"ttl\":3600}]",
"new_value": "[{\"host\":\"@\",\"value\":\"192.0.2.2\",\"ttl\":3600}]",
"old_value_formatted": "192.0.2.1",
"new_value_formatted": "192.0.2.2",
"change_summary": "A record updated",
"diff": "Changed from 192.0.2.1 to 192.0.2.2",
"identifier": "abc123def456",
"created_at": "2024-10-27 12:00:00",
"created_at_human": "2 hours ago"
},
{
"id": "019a11e5-5678-1234-9012-987654321012",
"domain_id": 1,
"field_changed": "mx_records",
"field_changed_human": "MX",
"old_value": "[{\"host\":\"@\",\"value\":\"mail.old.com\",\"priority\":10,\"ttl\":3600}]",
"new_value": "[{\"host\":\"@\",\"value\":\"mail.new.com\",\"priority\":10,\"ttl\":3600}]",
"old_value_formatted": "mail.old.com (Priority: 10)",
"new_value_formatted": "mail.new.com (Priority: 10)",
"change_summary": "MX record updated",
"diff": "Mail server changed from mail.old.com to mail.new.com",
"identifier": "xyz789ghi012",
"created_at": "2024-10-26 08:30:00",
"created_at_human": "1 day ago"
}
]