跳到主要內容

取得提現記錄

資訊
  • 此介面需要簽名,具體簽名規則請參閱認證
  • 此介面會觸發限頻,具體規則請參閱限頻

HTTP 請求

GET /assets/withdraw

請求參數

參數名是否必須類型說明
ccyfalsestring幣種名稱
withdraw_idfalseint提現記錄ID
statusfalsestring提現狀態
pagefalseint分頁頁數。預設頁數為1。
limitfalseint分頁數量。預設數量為10。

請求回應

參數名類型說明
withdraw_idint提現唯一ID
created_atint提現申請時間
ccystring幣種名稱
chainstring公鏈名稱
withdraw_methodstring提現方法(鏈上提現或站內轉帳)
memostring部分幣種充值需要memo,若不需要則回傳空值
amountstring提現數量
actual_amountstring實際提現數量
tx_feestring提現手續費
tx_idstring交易哈希
to_addressstring提現地址
confirmationint確認數
explorer_address_urlstring區塊鏈瀏覽器地址鏈接
explorer_tx_urlstring區塊鏈瀏覽器交易鏈接
statusstring提現狀態
remarkstring備註

請求範例

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

回應範例

{
"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"

}