get_account_balance_history
Retrieve monthly balance history for a single LunchMoney account by supplying its account ID and type (manual, plaid, or crypto_manual). Discover account IDs first using account list tools.
Instructions
Get monthly balance history for a single account. Call get_all_manual_accounts, get_all_plaid_accounts, or get_all_manual_crypto first to discover ids. For synced crypto holdings use get_crypto_synced_balance_history instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end_month | No | Optional last month of the range, inclusive, as YYYY-MM (e.g. 2026-03). Must not be earlier than start_month and must not be in the future. For a single month, use the same value as start_month. | |
| account_id | Yes | Id of the account to get balance history for. | |
| start_month | No | Optional first month of the range, inclusive, as YYYY-MM (e.g. 2026-01). Must not be in the future. If set, end_month is also required. A full date such as 2026-01-01 is invalid. | |
| account_type | Yes | Type of account the balance history belongs to. Use manual for manually-managed accounts, plaid for synced bank accounts, crypto_manual for manually-managed crypto, and deleted for accounts that no longer exist but still have history. Synced crypto uses the dedicated crypto_synced tools instead. |