Withdraw Quota
Query withdraw quota for currencies
(Authentication type:KEYED, See Interface Permission)
Request Format
GET https://api-cloud.bitmart.com/account/v1/withdraw/charge
Request Limit
Request Parameter
Field | Type | Required? | Description |
---|---|---|---|
currency | string | Yes | Token symbol, e.g., 'BTC' |
Request example
curl https://api-cloud.bitmart.com/account/v1/withdraw/charge?currency=BTC
Response Data
Field | Type | Description |
---|---|---|
today_available_withdraw_BTC | String | Amount available for withdrawal today, unit: BTC |
min_withdraw | string | Minimum withdrawable amount |
withdraw_precision | int | Withdrawal precision |
withdraw_fee | string | Withdrawal fee |
Instruction
Example: When 'descriptive' =5, when a decimal point of withdrawal amount is more than 5, The system will reject the request.
Example of returned data format
{
"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"
}
}