Get Data
get_dataPull observations from an ISTAT dataset. key is a dot-separated SDMX dimension filter, one position per dimension in the order given by dataflow_structure; leave a position empty to wildcard it. Example: get_data({ dataflow_id: "101_1015", key: "A.IT...", start_period: "2021", end_period: "2023" }) selects annual (A), REF_AREA=IT (Italy), and wildcards the rest. Omit key (or pass "") to fetch all series — caution, this can be large. Returns decoded series with their dimension labels and per-period values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | No | Dot-separated dimension filter (one position per dimension, empty = wildcard), e.g. "A.IT..." . Omit for all series. | |
| last_n | No | Return only the last N observations per series. | |
| end_period | No | End period, e.g. "2023". | |
| max_series | No | Cap the number of decoded series returned (default 200). | |
| dataflow_id | Yes | ISTAT dataflow id, e.g. "101_1015". | |
| start_period | No | Start period, e.g. "2021", "2021-01", "2021-Q1". |