👛 Wallets
Manage wallets, check balances, set default wallet, archive unused wallets.
On this page
create_wallet
SafeCreate a new wallet to track money. Supports multiple currencies. The first wallet is automatically set as default.
Parameters
| Parameter | Type | Description |
|---|---|---|
| name* | string | Wallet name (e.g., "Card", "Cash", "Savings") |
| currency? | string | Currency code (RUB, USD, EUR, GEL). Default: RUB |
| balance? | number | Initial balance. Default: 0 |
| icon? | string | Icon name (wallet, credit-card, piggy-bank, etc.) |
| color? | string | Hex color code (#6366f1) |
Examples
list_wallets
SafeShow all wallets with their balances. Can include or exclude archived wallets.
Parameters
| Parameter | Type | Description |
|---|---|---|
| include_archived? | boolean | Show archived wallets. Default: false |
Examples
• Main: $50,000 ⭐
• Cash: $5,000
• EUR Card: €200
get_balance
SafeGet current balance of a specific wallet or total balance across all wallets.
Parameters
| Parameter | Type | Description |
|---|---|---|
| wallet? | string | Wallet name. If omitted, shows total balance |
| currency? | string | Convert total to this currency |
Examples
set_default_wallet
SafeSet a wallet as default. Default wallet is used when no wallet is specified in transactions.
Parameters
| Parameter | Type | Description |
|---|---|---|
| wallet* | string | Name of wallet to set as default |
Examples
edit_wallet
SafeEdit wallet properties: name, balance, icon, or color.
Parameters
| Parameter | Type | Description |
|---|---|---|
| wallet* | string | Current wallet name |
| name? | string | New name |
| balance? | number | New balance (correction) |
| icon? | string | New icon |
| color? | string | New color |
Examples
archive_wallet
SafeArchive a wallet to hide it from the main list. Archived wallets keep their history but can't be used for new transactions.
Parameters
| Parameter | Type | Description |
|---|---|---|
| wallet* | string | Wallet name to archive |
Examples
delete_wallet
Requires ConfirmationPermanently delete a wallet and all its transaction history. This action cannot be undone after confirmation.
Parameters
| Parameter | Type | Description |
|---|---|---|
| wallet* | string | Wallet name to delete |