All datasets

Denmark: gross energy consumption by sector and fuel

Statistics Denmark (DST) energy account: gross energy consumption in gigajoules (GJ) by sector (total industries and households, total industries, households) and fuel (total energy, oil products, natural gas, coal and coke, renewable energy, electricity, district heat), annual 1966 onwards. Rows are sector x fuel x year.

Source: Statistics Denmark (DST)1,260 rowsUpdated: 9/22/2026License: CC-BY-4.0
denmarkenergyfueldst

Quality

100

Attribution

Statistics Denmark (StatBank Denmark). Source: Statistics Denmark – StatBank.dk. Data reproduced with source accreditation as required by Statistics Denmark.

Schema

ColumnTypeDescription
datetimestampReference period of the observation, mapped to the first day of the period (StatBank 'time' variable; table ENE3H on StatBank Denmark).
series_idstringStable machine identifier: StatBank table code followed by the provider's variable value codes, pipe-separated.
series_labelstringHuman-readable series label built from Statistics Denmark's own StatBank variable value texts.
unitstringUnit of measurement as published by Statistics Denmark for table ENE3H (table-level unit, or gigajoules for the energy account).
valuefloatObserved value (StatBank 'INDHOLD' content column, table ENE3H); '..' or blank entries are stored as missing.
sector_codestringStatistics Denmark StatBank variable code (industry).
sector_labelstringStatistics Denmark StatBank variable label (industry).
fuel_codestringStatistics Denmark StatBank variable code (type of energy).
fuel_labelstringStatistics Denmark StatBank variable label (type of energy).

Sample rows

dateseries_idseries_labelunitvaluesector_codesector_labelfuel_codefuel_label
1966-01-01T00:00:00ENE3H|ETOT|ETOTIndustries and households — TOTALGJ781043603ETOTIndustries and householdsETOTTOTAL
1967-01-01T00:00:00ENE3H|ETOT|ETOTIndustries and households — TOTALGJ796964553ETOTIndustries and householdsETOTTOTAL
1968-01-01T00:00:00ENE3H|ETOT|ETOTIndustries and households — TOTALGJ748112102ETOTIndustries and householdsETOTTOTAL
1969-01-01T00:00:00ENE3H|ETOT|ETOTIndustries and households — TOTALGJ806937981ETOTIndustries and householdsETOTTOTAL
1970-01-01T00:00:00ENE3H|ETOT|ETOTIndustries and households — TOTALGJ899286367ETOTIndustries and householdsETOTTOTAL

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/dst/dst_energy_consumption" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/dst/dst_energy_consumption").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/dst/dst_energy_consumption

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