Get pending IRTP verification
Retrieve a pending IRTP verification for a domain.
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.
Authorizations
AuthorizationstringRequired
API Token authentication
Path parameters
domainstringRequiredExample:
Domain name
mydomain.tldResponses
200
Success response
application/json
domainstringOptionalExample:
Domain name
mydomain.tldstatusstring · enumOptionalExample:
IRTP verification status
pendingPossible values: old_confirmed_atstring · date-time · nullableOptionalExample:
When the old registrant confirmed the change
2026-03-19T08:07:49Znew_confirmed_atstring · date-time · nullableOptionalExample:
When the new registrant confirmed the change
2026-03-19T08:07:49Zold_whois_profile_emailstringOptionalExample:
Email the old registrant confirmation was sent to
old-registrant@example.comnew_whois_profile_emailstringOptionalExample:
Email the new registrant confirmation was sent to
new-registrant@example.comexpires_atstring · date-timeOptionalExample:
When the verification auto-cancels if unconfirmed
2026-03-24T08:07:49Z401
Unauthenticated response
application/json
500
Error response
application/json
get/api/domains/v1/irtp/{domain}
GET /api/domains/v1/irtp/{domain} HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"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"
}Last updated
Was this helpful?