get_cashflow
Analyze cashflow by providing start and end dates in YYYY-MM-DD format to evaluate financial trends and transactions within a specified period.
Instructions
Get cashflow analysis from Monarch Money.
Args:
start_date: Start date in YYYY-MM-DD format
end_date: End date in YYYY-MM-DD format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Date"
}
},
"title": "get_cashflowArguments",
"type": "object"
}