查询提币额度
查询提币额度
(鉴权类型:KEYED, 参见接口权限)
请求格式
GET https://api-cloud.bitmart.com/account/v1/withdraw/charge
请求限制
参见 速率限制详细
请求参数
字段 | 类型 | 是否必填 | 描述 |
---|---|---|---|
currency | string | 必填 | 币种,如BTC |
请求示例
curl https://api-cloud.bitmart.com/account/v1/withdraw/charge?currency=BTC
响应详情
字段 | 类型 | 描述 |
---|---|---|
today_available_withdraw_BTC | String | 今日可提现额度,单位: BTC |
min_withdraw | string | 最小可提币数量 |
withdraw_precision | int | 提现精度,精确到小数点后几位 |
withdraw_fee | string | 提币手续费 |
解释说明
例子:当withdraw_precision
=5, 则当提现金额的小数点超过5位时,系统会拒绝请求。
返回数据格式示例
{
"message":"OK",
"code":1000,
"trace":"62a80bde-0cb4-4bf1-b8e5-5ad2c71463e7",
"data":{
"today_available_withdraw_BTC":"100.0000",
"min_withdraw":"0.00000000",
"withdraw_precision":8,
"withdraw_fee":"0.00000000"
}
}