get_wallet_balance
Retrieve wallet balance details for a Bybit account by specifying account type and cryptocurrency. Use this tool to access real-time balance information for UNIFIED, CONTRACT, or SPOT accounts.
Instructions
Get wallet balance information for the authenticated user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountType | Yes | Account type | |
coin | No | Cryptocurrency symbol, e.g., BTC, ETH, USDT. If not specified, returns all coins. |
Input Schema (JSON Schema)
{
"properties": {
"accountType": {
"description": "Account type",
"enum": [
"UNIFIED",
"CONTRACT",
"SPOT"
],
"type": "string"
},
"coin": {
"description": "Cryptocurrency symbol, e.g., BTC, ETH, USDT. If not specified, returns all coins.",
"type": "string"
}
},
"required": [
"accountType"
],
"type": "object"
}