v58

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-073053701.0 MB
Domains: WHOIS

Get pending IRTP verification

Retrieve a pending IRTP verification for a domain.

Both the old and new registrant must confirm it before the WHOIS change takes effect.

Use this endpoint to check the status of a WHOIS change awaiting registrant confirmation.

get/api/domains/v1/irtp/{domain}

Path parameters

domainstring required
Example:mydomain.tld

Domain name

Response

Success response

domainstring

Domain name

status'pending' | 'completed' | 'canceled'

IRTP verification status

old_confirmed_atstring date-time nullable

When the old registrant confirmed the change

new_confirmed_atstring date-time nullable

When the new registrant confirmed the change

old_whois_profile_emailstring

Email the old registrant confirmation was sent to

new_whois_profile_emailstring

Email the new registrant confirmation was sent to

expires_atstring date-time

When the verification auto-cancels if unconfirmed

Example response

{
  "domain": "mydomain.tld",
  "status": "pending",
  "old_confirmed_at": "2026-03-19T08:07:49Z",
  "new_confirmed_at": "2026-03-19T08:07:49Z",
  "old_whois_profile_email": "old-registrant@example.com",
  "new_whois_profile_email": "new-registrant@example.com",
  "expires_at": "2026-03-24T08:07:49Z"
}