Skip to main content

Assets Withdraw

Assets Withdraw

Get user's withdraw records

Request frequency limit: 1/1s

Withdrawal status values are normalized to: pending, auditing, cancelling, succeed, failed, cancelled.

Time fields such as cTime and uTime are millisecond timestamp strings.

Request URL

GET /deepcoin/asset/withdraw-list

Request Parameters

Field NameRequiredTypeDescription
coinfalsestringCompatible coin field
ccyfalsestringCoin, for example USDT
chainfalsestringChain, for example USDT-TRC20
txHashfalsestringTransaction hash
txIdfalsestringTransaction hash, OKX-style field
wdIdfalsestringWithdrawal ID
statefalsestringWithdrawal state
startTimefalseintegerQuery start time. Cannot be earlier than 6 months
endTimefalseintegerQuery end time. Cannot be earlier than 6 months
pagefalseintegerPage number
Default: 1
sizefalseintegerItems per page
Default: 20, max: 100

Response Parameters

Field NameTypeDescription
dataarrayWithdrawal records
>wdIdstringWithdrawal ID
>clientIdstringClient request ID
>ccystringCoin
>chainstringOpenAPI chain value, for example USDT-TRC20
>amtstringWithdrawal amount
>feestringWithdrawal fee
>toAddrstringWithdrawal address
>memostringMemo/tag/payment ID
>txIdstringTransaction hash
>statestringWithdrawal state
pending: Pending
auditing: Under review
cancelling: Cancelling
succeed: Success
failed: Failed
cancelled: Cancelled
>canCancelbooleanWhether the withdrawal can be cancelled
>cTimestringCreated time
>uTimestringUpdated time
>createTimeintegerCompatible field: created time
>txHashstringCompatible field: transaction hash
>addressstringCompatible field: withdrawal address
>amountstringCompatible field: withdrawal amount
>coinstringCompatible field: coin
>statusstringCompatible field: withdrawal status
countintegerTotal count
pageintegerCurrent page number
sizeintegerCurrent items per page

Response Example

{
"code": "0",
"msg": "",
"data": {
"data": [
{
"createTime": 1719459854,
"txHash": "xxxxxxxxx",
"address": "",
"amount": "100",
"ccy": "USDT",
"chain": "USDT-TRC20",
"amt": "30",
"fee": "11",
"toAddr": "TEV1gDkDST3kUtv27SCYfbAoz7ukLMwJdS",
"state": "cancelled",
"cTime": "1777970396000",
"uTime": "1777970900000",
"createTime": 1777970396000,
"address": "TEV1gDkDST3kUtv27SCYfbAoz7ukLMwJdS",
"amount": "30",
"coin": "USDT",
"status": "cancelled"
}
],
"count": 4,
"page": 1,
"size": 20
}
}

提币状态

Get a single withdrawal status by withdrawal ID.

Request URL

GET /deepcoin/asset/withdrawal-status

Request Parameters

Field NameRequiredTypeDescription
wdIdtruestringWithdrawal ID
ccyfalsestringCoin, for example USDT

Response Parameters

The response data has the same item structure as withdraw-list.

Response Example

{
"code": "0",
"msg": "",
"data": {
"wdId": "339288",
"ccy": "USDT",
"chain": "USDT-TRC20",
"amt": "30",
"state": "cancelled",
"cTime": "1777970396000",
"uTime": "1777970900000"
}
}