跳到主要内容

申请提现

信息
  • 该接口需要签名,具体签名规则请参阅认证
  • 该接口会触发限频,具体规则请参阅限频

HTTP 请求

POST /assets/withdraw

请求参数

参数名是否必须类型说明
ccytruestring币种名称
chainfalsestring公链名称,链上提现时必填,站内转账时不必填
to_addresstruestring提现地址。提现地址需要先通过开发者控制台添加IP白名单,链上提现或者站内转账都需要先添加白名单。
withdraw_methodfalsestring提现方法(链上提现或者站内转账),默认为链上提现
链上提现(on_chain)。适用于提现到CoinEx站外
站内转账(inter_user)。适用于提现方和接收方均为CoinEx用户,无需提现手续费和链上确认,即时到账
memofalsestring部分币种充值需要 memo,若不需要则不返回此字段
amounttruestring提现数量。
低于最小提现数量的资产无法提现
提现需要支付提现手续费,请预留足够的手续费
extrafalseobject如果是KDA链的提现,需要在extra字段中附加chain_id字段,可参考下面的请求示例
remarkfalsestring提现备注

请求响应

参数名类型说明
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备注

请求示例

{
"ccy": "USDT",
"chain": "CSC",
"to_address": "0x3886be3128DEF4dEC006116acaf21750c0138Ad6",
"extra": {
"chain_id": "0"
}
"amount": "1"
}

响应示例

{
"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": ""
},
"message": "OK"
}