Skip to main content
GET
/
api
/
domains
/
{domain_id}
/
changes
/
whois
/
{whoisChange_id}
cURL
curl --request GET \
  --url https://domainwarden.app/api/domains/{domain_id}/changes/whois/{whoisChange_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "019a11e5-1234-5678-9012-123456789012",
  "domain_id": 1,
  "field_changed": "expiry_date",
  "old_value": "2024-12-31",
  "new_value": "2025-12-31",
  "identifier": "abc123def456",
  "created_at": "2024-10-27 12:00:00",
  "created_at_human": "2 hours ago"
}

Authorizations

Authorization
string
header
required

You can obtain your API Token from your Domainwarden account settings.

Path Parameters

domain_id
string
required

The ID of the domain.

whoisChange_id
integer
required

The ID of the whoisChange.

domain
integer
required

The ID of the domain.

whoisChange
string
required

The UUID of the WHOIS change entry.

Response

id
string
Example:

"019a11e5-1234-5678-9012-123456789012"

domain_id
integer
Example:

1

field_changed
string
Example:

"expiry_date"

old_value
string
Example:

"2024-12-31"

new_value
string
Example:

"2025-12-31"

identifier
string
Example:

"abc123def456"

created_at
string
Example:

"2024-10-27 12:00:00"

created_at_human
string
Example:

"2 hours ago"