get_budget_summary
Retrieve monthly budget summaries showing budgeted versus actual spending amounts for specified date ranges to monitor financial performance.
Instructions
Get budget summary for a specific date range. The budgeted and spending amounts will be broken down by month.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"currency": {
"description": "Currency for budget (defaults to primary currency)",
"type": "string"
},
"end_date": {
"description": "End date in YYYY-MM-DD format. Lunch Money currently only supports monthly budgets, so your date should be the end of a month (eg. 2021-04-30)",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format. Lunch Money currently only supports monthly budgets, so your date should be the start of a month (eg. 2021-04-01)",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}