English
Query Withdraw Order
- Method:
GET - Path:
/coin/v1/withdraw/query - Parameters: Query
Request fields
| Field | Type | Required | Constraint | Description |
|---|---|---|---|---|
trade_sn | string | Conditionally | Length 0~255 | Merchant order ID; either trade_sn or order_no (at least one) |
order_no | string | Conditionally | Length 0~255 | Platform withdraw order ID |
Response fields (data)
| Field | Type | Description |
|---|---|---|
trade_sn | string | Merchant order ID |
order_no | string | Platform withdraw order ID |
currency | string | Withdraw currency |
amount | double | Requested withdraw amount |
receive_amount | double | Expected receive amount |
fee_charge_type | int32 | Charge type; see Fee charge type |
fee | double | Fee |
receive_account_no | string | Receive account number |
receive_account | string | Receive account snapshot |
status | string | Order status; see Withdraw order status |
created_at | string | Created time, RFC3339 (with timezone) |
finished_at | string | Successful withdraw time, RFC3339 (with timezone); empty if unfinished |
Success response example
json
{
"status": 200,
"msg": "SUCCESS",
"data": {
"trade_sn": "WD-001",
"order_no": "W202606160001",
"currency": "USDT",
"amount": 100,
"receive_amount": 99,
"fee_charge_type": 1,
"fee": 1,
"receive_account_no": "MWAxxxxxxxxxxxUT",
"receive_account": "TXXXX...",
"status": "FINISHED",
"created_at": "2026-06-16T16:00:10+08:00",
"finished_at": "2026-06-16T16:00:20+08:00"
}
}