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 Name | Required | Type | Notes |
---|---|---|---|
ccy | false | string | Currency name |
withdraw_id | false | int | Withdrawal record ID |
status | false | string | Withdrawal status |
page | false | int | Number of pagination. Default is 1. |
limit | false | int | Number in each page. Default is 10. |
Return parameters
Parameter Name | Type | Notes |
---|---|---|
withdraw_id | int | Withdrawal unique ID |
created_at | int | Withdrawal application time |
ccy | string | Currency name |
chain | string | Chain name |
withdraw_method | string | Withdrawal methods (On-chain or inter-user transfer) |
memo | string | A memo is required for certain currency deposits. If not, return an empty value. |
amount | string | Withdrawal amount |
actual_amount | string | Actual withdrawal amount |
tx_fee | string | Withdrawal fee |
tx_id | string | Tx hash |
to_address | string | Withdrawal address |
confirmation | int | Number of confirmation |
explorer_address_url | string | Address link in blockchain explorer |
explorer_tx_url | string | Transaction link in blockchain explorer |
status | string | Withdrawal status |
remark | string | Remark |
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"
}