Skip to main content

Withdrawal history

GET: /v1/spot/withdraw/history

Parameters

ParameterTypemandatoryDefaultDescriptionRanges
currencystringtrueCurrency name, which can be obtained from the 'Get the supported currencies for deposit or withdrawal' interface
chainstringtrueThe name of the transfer network, which can be obtained from the interface of 'Get the supported currencies for deposit or withdrawal' interface
statusstringfalseThe status of the withdrawal record, string type,Refer to public module-Deposit/withdrawal statusSUBMIT、REVIEW、AUDITED、AUDITED_AGAIN、PENDING、SUCCESS、FAIL、CANCEL
fromIdLongfalseThe Id of the last pagination, that is, the primary key id of the record
directionStringfalseNEXTPage directionNEXT:next page,PREV:previous page
limitintfalse10Number of records per page, maximum 2001 <= limit <= 200
startTimeLongfalseQuery range start boundary, timestamp in milliseconds
endTimeLongfalseQuery range end boundary, timestamp in milliseconds
Response
{
"code": 200,
"msg": "string",
"msgInfo": [
{}
],
"data": {
"hasPrev": true, //Is there a previous page
"hasNext": true, //Is there a next page
"items": [
{
"id": 763111, //Withdrawal record id
"currency": "usdt", //currency name
"chain": "Ethereum", //Withdraw network
"address": "0xfa3abf", //Withdrawal target address
"memo": "",
"status": "REVIEW", //Refer to public module-Deposit/withdrawal record status
"amount": "30", //Withdrawal Amount
"fee": "0", //Withdrawal fee
"confirmations": 0, //number of block confirmations
"transactionId": "", //transaction hash
"createdTime": 1667763470000 //Withdrawal application time, timestamp in milliseconds
},
{
"id": 763107,
"currency": "usdt",
"chain": "Tron",
"address": "TYnJJw",
"memo": "",
"status": "REVIEW",
"amount": "50",
"fee": "1",
"confirmations": 0,
"transactionId": "",
"createdTime": 1667428286000
}
]
}
}