Skip to main content

Withdrawal history

Type: GET Description: /v4/withdraw/history

Parameters

nametypemandatorydefaultdescriptionranges
currencystringtrueN/ACurrency name, from Get supported currencies for deposit/withdrawal API
chainstringtrueN/ATransfer network, from Get supported currencies for deposit/withdrawal API
statusstringfalseN/AWithdrawal status (see depositWithdrawStatus)SUBMIT, REVIEW, AUDITED, AUDITED_AGAIN, PENDING, SUCCESS, FAIL, CANCEL
fromIdlongfalseN/AThe last pagination ID, i.e. the primary key ID of the record
directionstringfalseNEXTPagination directionNEXT = next page, PREV = previous page
limitintfalse10Number of records per page (max 200)1 ≤ limit ≤ 200
startTimelongfalseN/AQuery range start boundary (timestamp in ms)
endTimelongfalseN/AQuery range end boundary (timestamp in ms)

depositWithdrawStatus

StatusDescription
SUBMIT已提交
REVIEW审核中
AUDITED已审核
AUDITED_AGAIN重新审核
PENDING处理中
SUCCESS成功
FAIL失败
CANCEL已取消

Notes

  • Supports pagination using fromId + direction.
  • Limit per page is configurable with limit (default 10, max 200).
  • Time range filtering is supported with startTime and endTime.
  • Status values align with Deposit/Withdrawal record status definitions.

Response Example

Response
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": {
"hasPrev": true, // Is there a previous page
"hasNext": true, // Is there a next page
"items": [
{
"id": 763111, // Withdrawal record ID
"clientOrderId": 10, // Client ID
"type": 0, // Type: CHAIN_TRANSFER - Blockchain withdrawal, INTERNAL_TRANSFER - Internal withdrawal
"currency": "usdt", // Currency
"chain": "Ethereum", // Withdrawal network
"address": "0xfa3abf", // Withdrawal target address
"memo": "",
"status": "REVIEW", // Withdrawal status
"amount": "30", // Withdrawal amount
"fee": "0", // Withdrawal fee
"confirmations": 0, // Number of block confirmations
"transactionId": "", // Transaction hash
"createdTime": 1667763470000 // Withdrawal application time (ms)
},
{
"id": 763107,
"clientOrderId": 10,
"type": 0,
"currency": "usdt",
"chain": "Tron",
"address": "TYnJJw",
"memo": "",
"status": "REVIEW",
"amount": "50",
"fee": "1",
"confirmations": 0,
"transactionId": "",
"createdTime": 1667428286000
}
]
}
}