whooing_search_entries
Search transactions using query, account, amount, and date filters. Find specific entries with keywords or account names.
Instructions
Search transactions with query, account, amount, and date filters. Prefer this for natural-language find/search requests.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_date | No | Start date (YYYYMMDD). Defaults to 1st of current month. | |
| end_date | No | End date (YYYYMMDD). Defaults to today. | |
| section_id | No | Section ID. Defaults to WHOOING_SECTION_ID env var. | |
| limit | No | Max number of entries to fetch. | |
| account_ids | No | Return entries where either side account ID is in this list. | |
| account_name | No | Case-insensitive account name match, e.g. Game or 네이버페이. | |
| l_account_id | No | Return entries with this left account ID (e.g. expense category). | |
| r_account_id | No | Return entries with this right account ID (e.g. payment account). | |
| min_money | No | Return entries with amount greater than or equal to this value. | |
| max_money | No | Return entries with amount less than or equal to this value. | |
| item_contains | No | Case-insensitive substring match against the item field. | |
| memo_contains | No | Case-insensitive substring match against the memo field. | |
| item | No | Raw Whooing item search. Supports exact match, * wildcard, and detail parentheses. | |
| memo | No | Raw Whooing memo search. Supports space-separated AND terms and ! exclusions. | |
| query | No | Case-insensitive substring match against item or memo. | |
| keywords | No | Any keyword to match case-insensitively against item or memo. | |
| page_limit | No | Entries API page size for paginated search. Defaults to 100. | |
| max_pages | No | Maximum pages to fetch when paginating with the entries max cursor. | |
| max_api_calls | No | Maximum Whooing API calls this tool may make. Defaults to 20. | |
| sort_column | No | Whooing entries sort column. Defaults to entry_date. | |
| sort_order | No | Whooing entries sort order. Defaults to desc. |