v1

latestOpenAPI 3.1.02026-07-2671111437.2 KB
Orders

Get Order

Fetches full details about a specific order using its ID. This includes domains, prices, and timestamps. Useful for confirming transactions, receipts, or generating invoices.

get/core/v1/orders/{orderId}

Path parameters

orderIdinteger required

OrderId is the unique identifier of the requested order.

Response

A successful response.

authAmountnumber float

AuthAmount is the amount authorized to complete the order purchase.

createDatestring

CreateDate is the date the order was placed.

currencystring

Currency indicates currency of the order ('USD', 'CNY').

currencyRatenumber float

CurrencyRate is the conversion rate from USD to order's currency. This field is only populated if order's currency is non-USD.

finalAmountnumber float

FinalAmount is the final amount of the order, after discounts and refunds.

idinteger
registrarstring

Registrar is registrar with which order is placed.

statusstring

Status indicates the state of the order ('success', 'failed').

totalCapturenumber float

TotalCapture is the amount captured.

totalRefundnumber float

TotalRefund is the amount, if any, refunded. Default is 0.00.

Example response

{
  "orderItems": [
    {
      "isRefundable": true
    }
  ],
  "totalCapture": 10.95,
  "totalRefund": 10.95
}