get_balance
Get liquid balance for a Sui address (default SUI), optionally at a historical checkpoint. Counts only spendable coins, excluding staked SUI and DeFi positions, for accurate wallet assessment.
Instructions
Get the liquid balance of one coin type for a Sui address (defaults to SUI), optionally at a historical checkpoint. This counts spendable coins ONLY: staked SUI and value locked in DeFi positions do not appear here, so a wallet that looks nearly empty may not be — pair it with get_staking_summary and get_defi_positions before concluding anything about what an address holds. For every coin at once, use get_wallet_overview.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | Owner address (0x...) | |
| network | No | Which Sui network to run this call against: 'mainnet' (default), 'testnet', or 'devnet'. Set this per-call — different tool calls in the same session can target different networks (e.g. to compare a value on testnet against mainnet). | |
| coin_type | No | Coin type (default: 0x2::sui::SUI) | |
| at_checkpoint | No | Query balance at a specific checkpoint (for historical balances) |