get_wallet_balance
Retrieve wallet balance details for specified account types (UNIFIED, CONTRACT, SPOT) and optional coin on Bybit. Provides accurate balance information for better account management.
Instructions
Get wallet balance
Args:
accountType (str): Account type (UNIFIED, CONTRACT, SPOT)
coin (Optional[str]): Coin symbol
Returns:
Dict: Wallet balance information
Example:
get_wallet_balance("UNIFIED", "BTC")
Reference:
https://bybit-exchange.github.io/docs/v5/account/wallet-balance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountType | Yes | Account type (UNIFIED, CONTRACT, SPOT) | |
coin | No | Coin symbol |
Input Schema (JSON Schema)
{
"properties": {
"accountType": {
"description": "Account type (UNIFIED, CONTRACT, SPOT)",
"title": "Accounttype",
"type": "string"
},
"coin": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Coin symbol",
"title": "Coin"
}
},
"required": [
"accountType"
],
"title": "get_wallet_balanceArguments",
"type": "object"
}