Skip to content

Query Withdraw Order

  • Method: GET
  • Path: /coin/v1/withdraw/query
  • Parameters: Query

Request fields

FieldTypeRequiredConstraintDescription
trade_snstringConditionallyLength 0~255Merchant order ID; either trade_sn or order_no (at least one)
order_nostringConditionallyLength 0~255Platform withdraw order ID

Response fields (data)

FieldTypeDescription
trade_snstringMerchant order ID
order_nostringPlatform withdraw order ID
currencystringWithdraw currency
amountdoubleRequested withdraw amount
receive_amountdoubleExpected receive amount
fee_charge_typeint32Charge type; see Fee charge type
feedoubleFee
receive_account_nostringReceive account number
receive_accountstringReceive account snapshot
statusstringOrder status; see Withdraw order status
created_atstringCreated time, RFC3339 (with timezone)
finished_atstringSuccessful 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"
  }
}