Get Bolagsanalys quarterly figures
bolagsanalys_get_dataFetch quarterly financial figures for one company, optionally filtered by parameter and quarter range. Read-only access to Swedish listed-company data.
Instructions
Read-only. Fetch quarterly figures for one company — optionally narrowed to a single parameter and a quarter range. Pass a companyId from bolagsanalys_list_companies and (optionally) a parameterCode from bolagsanalys_find_parameter. Quarter bounds use packed ids: quarterId, fromDate, toDate accept e.g. '20251' or '2025Q1' (these are QUARTERS, not calendar dates). Example: companyId 'SE-VOLV-B', parameterCode 'REV', fromDate '2024Q1', toDate '2025Q4'. Every row keeps its companyId and parameterCode; read-only — never writes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-indexed result page (first page = 1), e.g. 1. | |
| sort | No | Comma-separated sort fields; prefix '-' for descending, e.g. '-name'. | |
| count | No | false (default) skips totalCount for cheaper bulk paging. | |
| toDate | No | Inclusive upper quarter bound, e.g. '20254' or '2025Q4'. | |
| fromDate | No | Inclusive lower quarter bound, e.g. '20241' or '2024Q1'. | |
| pageSize | No | Rows per page (v2 default 50, max 500), e.g. 50. | |
| companyId | No | Company id from bolagsanalys_list_companies, e.g. 'SE-VOLV-B'. Omit to fetch ALL companies for the parameter/quarter (enables one-call ranking/aggregation). | |
| quarterId | No | Single packed quarter, e.g. '20251' or '2025Q1'. | |
| parameterCode | No | Parameter code from bolagsanalys_find_parameter; omit for all parameters. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Quarterly figures, one row per company+parameter+quarter. | |
| page | Yes | The page you are on (1-indexed). | |
| pageSize | No | Rows per page echoed back by v2, e.g. 50. | |
| totalCount | No | Total matching rows across all pages; null/absent when count is skipped. | |
| totalPages | No | Total page count; null/absent when count is skipped. |