All datasets

Netherlands: quarterly GDP and components (current prices)

Statistics Netherlands (CBS) national accounts: quarterly gross domestic product and its expenditure components (household and government consumption, business and government investment, inventory change, goods and services exports/imports) plus gross national income, in current prices (million euro), 1995Q1 onwards. Rows are component x quarter.

Source: Statistics Netherlands (CBS)1,367 rowsUpdated: 9/22/2026License: CC-BY-4.0
netherlandsgdpnational-accountscbs

Quality

100

Attribution

Statistics Netherlands (CBS)

Schema

ColumnTypeDescription
datetimestampFirst day of the observation period (month, quarter, or year) parsed from the provider's Perioden time code.
series_idstringComposite key: StatLine table code | breakdown dimension codes | topic key.
series_labelstringHuman-readable label from the provider's own dimension and topic titles (in Dutch).
valuefloatObservation value in the series unit (see the unit column).
unitstringUnit of the observation, from the provider's table documentation (index base, %, x 1,000 persons, million EUR, persons).
stat_codestringStatLine topic key within the table.
stat_labelstringProvider's topic title (in Dutch).
time_codestringProvider's raw period code (YYYYMMmm, YYYYKW0q, or YYYYJJ00).
price_basis_codestringProvider dimension code (Soort gegevens).
price_basis_labelstringSoort gegevens

Sample rows

dateseries_idseries_labelvalueunitstat_codestat_labeltime_codeprice_basis_codeprice_basis_label
1995-01-01T00:00:0085879NED|A045297|BrutoBinnenlandsProduct_2Werkelijke prijzen — Bruto binnenlands product80016million EURBrutoBinnenlandsProduct_2Bruto binnenlands product1995KW01A045297Werkelijke prijzen
1995-04-01T00:00:0085879NED|A045297|BrutoBinnenlandsProduct_2Werkelijke prijzen — Bruto binnenlands product81861million EURBrutoBinnenlandsProduct_2Bruto binnenlands product1995KW02A045297Werkelijke prijzen
1995-07-01T00:00:0085879NED|A045297|BrutoBinnenlandsProduct_2Werkelijke prijzen — Bruto binnenlands product81664million EURBrutoBinnenlandsProduct_2Bruto binnenlands product1995KW03A045297Werkelijke prijzen
1995-10-01T00:00:0085879NED|A045297|BrutoBinnenlandsProduct_2Werkelijke prijzen — Bruto binnenlands product86491million EURBrutoBinnenlandsProduct_2Bruto binnenlands product1995KW04A045297Werkelijke prijzen
1996-01-01T00:00:0085879NED|A045297|BrutoBinnenlandsProduct_2Werkelijke prijzen — Bruto binnenlands product82994million EURBrutoBinnenlandsProduct_2Bruto binnenlands product1996KW01A045297Werkelijke prijzen

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/cbs/cbs_gdp_quarterly" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/cbs/cbs_gdp_quarterly").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/cbs/cbs_gdp_quarterly

Tip: fetch /llms.txt for the full machine-readable catalog.