Skip to main content

Get Withdrawal Record

Info
  • This endpoint requires signature. For specific signature rules, please refer to Authentication
  • This endpoint will trigger rate limit. For specific rules, please refer to Rate Limit.

HTTP request

GET /assets/withdraw

Request parameters

Parameter NameRequiredTypeNotes
ccyfalsestringCurrency name
withdraw_idfalseintWithdrawal record ID
statusfalsestringWithdrawal status
pagefalseintNumber of pagination. Default is 1.
limitfalseintNumber in each page. Default is 10.

Return parameters

Parameter NameTypeNotes
withdraw_idintWithdrawal unique ID
created_atintWithdrawal application time
ccystringCurrency name
chainstringChain name
withdraw_methodstringWithdrawal methods (On-chain or inter-user transfer)
memostringA memo is required for certain currency deposits. If not, return an empty value.
amountstringWithdrawal amount
actual_amountstringActual withdrawal amount
tx_feestringWithdrawal fee
tx_idstringTx hash
to_addressstringWithdrawal address
confirmationintNumber of confirmation
explorer_address_urlstringAddress link in blockchain explorer
explorer_tx_urlstringTransaction link in blockchain explorer
statusstringWithdrawal status
remarkstringRemark

Request example

GET /assets/withdraw?coin=USDT&page=1&limit=10

Response example

{
"code": 0,
"data": [
{
"withdraw_id": 206,
"created_at": 1524228297321,
"ccy": "BCH",
"chain": "",
"amount": "1.00000000",
"actual_amount": "1.00000000",
"withdraw_method": "inter_user",
"memo": "",
"tx_fee": "0",
"tx_id": "",
"to_address": "1KAv3pazbTk2JnQ5xTo6fpKK7p1it2RzD4",
"confirmations": 0,
"explorer_address_url": "https://www.coinex.net/address/0xefabcc016aee2cd205139899d1cac0b672659fe8",
"explorer_tx_url": "https://www.coinex.net/tx/",
"status": "audit",
"remark": ""
}
],
"pagination": {
"total": 1,
"has_next": false
},
"message": "OK"

}