Skip to main content

Get Transferable Amount (Unified)

Query the available amount to transfer of a specific coin in the Unified wallet.

HTTP Request

GET /v5/account/withdrawal

Request Parameters

ParameterRequiredTypeComments
coinNametruestringCoin name, uppercase only

Response Parameters

ParameterTypeComments
availableWithdrawalstringTransferable amount

Request Example

GET /v5/account/withdrawal?coinName=USDT HTTP/1.1
Host: api.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1733728105129
X-BAPI-RECV-WINDOW: 5000
Content-Type: application/json

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"availableWithdrawal": "408.03641264"
},
"retExtInfo": {},
"time": 1733728105312
}