Get Withdrawal Quotas
GET
/api/v1/withdrawals/quotas:::info[Description]
This interface can obtain the withdrawal quotas information of this currency.
:::
Request
currency
The chainId of currency, e.g. The available value for USDT are OMNI, ERC20, TRC20, default is ERC20. The available value for BTC are Native, Segwit, TRC20, the parameters are bech32, btc, trx, default is Native. This only apply for multi-chain currency, and there is no need for single chain currency.
Request samples
Responses
withdrawal limit currency
The intraday available withdrawal amount(withdrawal limit currency)
The intraday cumulative withdrawal amount(withdrawal limit currency)
Remaining amount available to withdraw the current day
Current available withdrawal amount
Minimum withdrawal fee
Fees for internal withdrawal
Minimum withdrawal amount
Is the withdraw function enabled or not
Floating point precision.
The chainName of currency
Reasons for restriction, Usually empty
Total locked amount (including the amount locked into USDT for each currency)
{
"code": "200000",
"data": {
"currency": "BTC",
"limitBTCAmount": "15.79590095",
"usedBTCAmount": "0.00000000",
"quotaCurrency": "USDT",
"limitQuotaCurrencyAmount": "999999.00000000",
"usedQuotaCurrencyAmount": "0",
"remainAmount": "15.79590095",
"availableAmount": "0",
"withdrawMinFee": "0.0005",
"innerWithdrawMinFee": "0",
"withdrawMinSize": "0.001",
"isWithdrawEnabled": true,
"precision": 8,
"chain": "BTC",
"reason": null,
"lockedAmount": "0"
}
}