Skip to main content

Get Withdrawable Amount

info

How can partial funds be subject to delayed withdrawal requests?

  • On-chain deposit: If the number of on-chain confirmations has not reached a risk-controlled level, a portion of the funds will be frozen for a period of time until they are unfrozen.
  • Buying crypto: If there is a risk, the funds will be frozen for a certain period of time and cannot be withdrawn.

HTTP Request

GET /v5/asset/withdraw/withdrawable-amount

Request Parameters

ParameterRequiredTypeComments
cointruestringCoin name

Response Parameters

ParameterTypeComments
limitAmountUsdstringThe frozen amount due to risk, in USD
withdrawableAmountObject
> SPOTObjectSpot wallet, it is not returned if spot wallet is removed
>> coinstringCoin name
>> withdrawableAmountstringAmount that can be withdrawn
>> availableBalancestringAvailable balance
> FUNDObjectFunding wallet
>> coinstringCoin name
>> withdrawableAmountstringAmount that can be withdrawn
>> availableBalancestringAvailable balance

Request Example

GET /v5/asset/withdraw/withdrawable-amount?coin=USDT HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1677565621998
X-BAPI-RECV-WINDOW: 50000
X-BAPI-SIGN: XXXXXX

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"limitAmountUsd": "52853.5551",
"withdrawableAmount": {
"FUND": {
"coin": "USDT",
"withdrawableAmount": "11135.0596",
"availableBalance": "11135.0596"
},
"SPOT": {
"coin": "USDT",
"withdrawableAmount": "0",
"availableBalance": "0"
}
}
},
"retExtInfo": {},
"time": 1677565632151
}