Get Transfer Record Details

This endpoint supports querying transfer records of the broker itself and its created sub-accounts.

HTTP Request

GET /api/v3/broker/nd/transfer/detail

Example

GET /api/v3/broker/nd/transfer/detail?orderId=665d933c0c2a7f0001ff64c5

{
    "code": "200000",
    "data": {
      "orderId": "665d933c0c2a7f0001ff64c5",
      "currency": "USDT",
      "amount": "0.5",
      "fromUid": 99996908310834,
      "fromAccountType": "CONTRACT",
      "fromAccountTag": "DEFAULT",
      "toUid": 99996908310834,
      "toAccountType": "MAIN",
      "toAccountTag": "DEFAULT",
      "status": "SUCCESS",
      "reason": null,
      "createdAt": 1717408572000
    }
}
REQUEST URL

This endpoint supports Broker URL

REQUEST RATE LIMIT

Broker Weight: 1

PARAMETERS
Param Type Mandatory Description
orderId String Yes Transfer Order ID
RESPONSES
Param Description
orderId Transfer Order ID
currency Currency
amount Transfer Amount (must be a positive integer in the currency's precision)
fromUid UID of the user transferring out
fromAccountType Account Type: MAIN, TRADE, CONTRACT, MARGIN, ISOLATED, TRADE_HF, MARGIN_V2, ISOLATED_V2
fromAccountTag Trading pair, required if the account type is ISOLATED or ISOLATED_V2, e.g., BTC-USDT
toUid UID of the user transferring in
toAccountType Account Type:Account Type: MAIN, TRADE, CONTRACT, MARGIN, ISOLATED, TRADE_HF, MARGIN_V2, ISOLATED_V2
toAccountTag Trading pair, required if the account type is ISOLATED or ISOLATED_V2, e.g., BTC-USDT
status Status: PROCESSING (processing), SUCCESS (successful), FAILURE (failed)
reason Failure Reason
createdAt Creation Time (Unix timestamp in milliseconds)