Get domain transfer details

Retrieve detailed information about an ongoing domain transfer. This requires a token obtained from POST /api/domain-transfers/generate. The result includes domain name, expiration date, creation date, and an accountId for calling POST /api/get-account-details.

Account & Settings Account

Context

Used in the dashboard

/domain-transfer/[uuid]

Workflow links

Headers

Accept Example
Content-Type Example

Body

required
application/json
token string required · Example: YOUR_TOKEN

Responses

200
data object required
data.accountId string · nullable required · Example: 20000

Nullable: may be null when not applicable.

data.createdAt string required · Example: 2026-02-10T00:00:00.000Z
data.domainExtension string · Example: se
data.expiresAt string required · Example: 2026-02-10T00:00:00.000Z
data.serviceName string required · Example: utsikteniåexample.com
data.serviceType string · enum required · Example: domain
domain
vps
requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

success boolean required · Example: true

True for successful responses.

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

400
code string required · Example: BAD_REQUEST

Machine-readable error code.

error string required · Example: Bad Request

HTTP status title (e.g. 'Bad Request').

message string required · Example: Cannot accept transfer of your own account

Human-readable message.

requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

401
code string required · Example: UNAUTHORIZED

Machine-readable error code.

error string required · Example: Unauthorized

HTTP status title (e.g. 'Bad Request').

message string required · Example: Authentication required

Human-readable message.

requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

404
code string required · Example: NOT_FOUND

Machine-readable error code.

error string required · Example: Not Found

HTTP status title (e.g. 'Bad Request').

message string required · Example: Invalid, expired, or already used transfer token not found

Human-readable message.

requestId string required · Example: 2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba

Unique request identifier (UUID).

timestamp string required · Example: 2026-02-10T00:00:00.000Z

ISO 8601 timestamp (UTC).

POST https://cloud.hostup.se/api/transfers/details
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/transfers/details" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "token": "YOUR_TOKEN"
  }'
Response
{
  "success": true,
  "timestamp": "2026-02-10T00:00:00.000Z",
  "requestId": "2121ae20-bd9d-41e9-aeeb-5dd1dd1a24ba",
  "data": {
    "accountId": null,
    "serviceName": "utsikteniåexample.com",
    "serviceType": "domain",
    "domainExtension": "se",
    "expiresAt": "2026-02-10T00:00:00.000Z",
    "createdAt": "2026-02-10T00:00:00.000Z"
  }
}
Request Body Example 1
{
  "token": "YOUR_TOKEN"
}