get_transactions
Retrieve and filter cached bank and credit-card transactions by date, account, category, amount, and more. Returns matching transactions and count.
Instructions
Query cached transactions.
Dates are YYYY-MM-DD. Amounts are signed (negative = money out), so use
max_amount=0 for spending only or min_amount=0 for income only.
Each transaction carries a derived category and is_transfer flag; pass
category to filter to one, or include_transfers=False to drop internal
transfers and card payments. Returns the matching transactions plus the count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| search | No | ||
| category | No | ||
| end_date | No | ||
| account_id | No | ||
| max_amount | No | ||
| min_amount | No | ||
| start_date | No | ||
| include_pending | No | ||
| include_transfers | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||