get_wallet_balance
Retrieve wallet balance for specified account type and coin on Bybit exchange, enabling precise tracking of cryptocurrency holdings and financial management.
Instructions
Get 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)",
"type": "string"
},
"coin": {
"description": "Coin symbol",
"type": "string"
}
},
"required": [
"accountType"
],
"type": "object"
}