binance_get_spot_account
Retrieve spot account balances, trading permissions, and commission rates to monitor account state and verify whether trading, withdrawals, and deposits are allowed.
Instructions
Get spot account state: trade/withdraw/deposit flags, commission rates, balances.
Calls GET /api/v3/account (SIGNED, USER_DATA). IP weight 20 per call.
When to Use:
To check current spot balances (free + locked) for one or all assets.
To confirm whether the account can currently trade, withdraw, or deposit, and what its maker/taker/buyer/seller commission rates are.
When NOT to Use:
For a specific symbol's commission (with any special/discount overrides) — use
binance_get_commission_rates.For non-spot wallets (Funding, Earn, ...) — use the wallet-account tools.
Returns:
A markdown block (or JSON with response_format="json") with canTrade/
canWithdraw/canDeposit, account type, commissionRates (maker/taker/buyer/
seller via fmt_num), permissions, last update time, and the balances list
(free/locked via fmt_num). When omit_zero_balances is True (the default)
and no asset filter is given, a count of hidden zero-balance assets is
shown. Display is capped at MAX_DISPLAY_ROWS (50) with a truncation note;
JSON mode instead adds truncated/balancesShown/balancesMatched fields
so truncation is machine-readable too.
Examples: params = {} params = {"omit_zero_balances": False} params = {"asset": "USDT"}
Error Handling: -2015 means the key lacks Reading permission or this machine's IP is not on the key's allowlist. An empty balances list after filtering means the asset filter matched nothing, or every balance was zero and got hidden.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |