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

Get transfer list

Retrieve all domain transfers in your portfolio. Use this endpoint to monitor incoming and outgoing registrar transfers across your domains.

Get transfer list

get

Retrieve all domain transfers in your portfolio.

Use this endpoint to monitor incoming and outgoing registrar transfers across your domains.

Authorizations
AuthorizationstringRequired

API Token authentication

Responses
200

Success response

application/json
domainstringOptional

Domain name

Example: mydomain.tld
statusstringOptional

Transfer status

Example: Completed
initiated_atstring · date-time · nullableOptional

When the transfer was initiated

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

When the transfer completed

Example: 2026-03-24T08:15:01Z
get/api/domains/v1/transfers
GET /api/domains/v1/transfers HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
  {
    "domain": "mydomain.tld",
    "status": "Completed",
    "initiated_at": "2026-03-19T08:07:49Z",
    "completed_at": "2026-03-24T08:15:01Z"
  }
]

Last updated

Was this helpful?