Bybit MCP Server

get_wallet_balance

Get wallet balance information for the authenticated user

Input Schema

NameRequiredDescriptionDefault
accountTypeYesAccount type
coinNoCryptocurrency 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" }