Dashboard chart with asset account balance information.
This endpoint returns the data required to generate a chart with basic asset account balance information. This is used on the dashboard.
Query parameters
A date formatted YYYY-MM-DD.
A date formatted YYYY-MM-DD.
Optional period to group the data by. If not provided, it will default to '1M' or whatever is deemed relevant for the range provided.
If you want to know which periods are available, see the enums or get the configuration value: GET /api/v1/configuration/firefly.valid_view_ranges
Optional set of preselected accounts to limit the chart to. This may be easier than submitting all asset accounts manually, for example. If you want to know which selection are available, see the enums here or get the configuration value: GET /api/v1/configuration/firefly.preselected_accounts
- empty: do not do a pre-selection
- all: select all asset and all liability accounts
- assets: select all asset accounts
- liabilities: select all liability accounts
If no accounts are found, the user's "frontpage accounts" preference will be used. If that is empty, all asset accounts will be used.
Headers
Unique identifier associated with this request.
Response
Line chart oriented chart information. Check out the model for more details. Each entry is a line (or bar) in the chart.
Example response
[
{
"label": "Checking account",
"currency_id": "5",
"currency_name": "Euro",
"currency_code": "EUR",
"currency_symbol": "$",
"currency_decimal_places": 2,
"primary_currency_id": "5",
"primary_currency_name": "Euro",
"primary_currency_code": "EUR",
"primary_currency_symbol": "$",
"primary_currency_decimal_places": 2,
"date": "2026-08-01T00:00:00+00:00",
"start_date": "2026-08-01T00:00:00+00:00",
"end_date": "2026-08-31T23:59:59+00:00",
"type": "line",
"period": "1M"
}
]Changes
No recorded changes to this endpoint across all 1 revision of this API.