Get Data
get_dataFetch observations from a table (TypedDataSet). Supports OData v3 query params. Use $select to pick columns (from table_dimensions keys) and $filter to subset, e.g. filter="Periods eq '2020JJ00'". Always set a $top to avoid huge responses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| top | No | OData $top, max rows to return (default 50). | |
| skip | No | OData $skip, rows to skip for paging. | |
| table | Yes | CBS table id, e.g. "37296eng". | |
| filter | No | OData $filter, e.g. "Periods eq '2020JJ00'" or "substringof('2020',Periods)". | |
| select | No | OData $select, comma-separated dimension/topic keys, e.g. "Periods,TotalPopulation_1". |