For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get pending IRTP verification

Retrieve a pending IRTP verification for a domain.

Get pending IRTP verification

get

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
domainstringRequired

Domain name

Example: mydomain.tld
Responses
200

Success response

application/json
domainstringOptional

Domain name

Example: mydomain.tld
statusstring · enumOptional

IRTP verification status

Example: pendingPossible values:
old_confirmed_atstring · date-time · nullableOptional

When the old registrant confirmed the change

Example: 2026-03-19T08:07:49Z
new_confirmed_atstring · date-time · nullableOptional

When the new registrant confirmed the change

Example: 2026-03-19T08:07:49Z
old_whois_profile_emailstringOptional

Email the old registrant confirmation was sent to

Example: old-registrant@example.com
new_whois_profile_emailstringOptional

Email the new registrant confirmation was sent to

Example: new-registrant@example.com
expires_atstring · date-timeOptional

When the verification auto-cancels if unconfirmed

Example: 2026-03-24T08:07:49Z
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?