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
Parameter | Required | Type | Comments |
---|---|---|---|
coinName | true | string | Coin name, uppercase only |
Response Parameters
Parameter | Type | Comments |
---|---|---|
availableWithdrawal | string | Transferable amount |
Request Example
- HTTP
- Python
- Node.js
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
}