Danish data service Energi
Live Danish grid prices and emissions, straight from Energinet
Energinet publishes Denmark's electricity market and grid data as named open datasets you can query directly. Pull day-ahead spot prices, CO2 emissions, consumption and more by dataset name with a simple row limit. No key required, JSON out, CORS enabled.
GET https://api.energidataservice.dk/dataset/Elspotprices?limit=1
{
"total": 1,
"dataset": "Elspotprices",
"limit": 1,
"records": [
{
"HourUTC": "2025-09-30T21:00:00",
"PriceArea": "DE",
"SpotPriceDKK": 690.789978,
"SpotPriceEUR": 92.540001
}
]
}curl "https://api.energidataservice.dk/dataset/Elspotprices?limit=1"const res = await fetch("https://api.energidataservice.dk/dataset/Elspotprices?limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.energidataservice.dk/dataset/Elspotprices?limit=1")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/dataset/Elspotprices?limit=1PROBEDLive Danish grid prices and emissions, straight from Energinet
/datasetDataset — documented GET route.
/dataset/1Dataset details by ID (example: 1).
/dataset?limit=10Dataset — documented GET route.
/dataset/search?q=testSearch by query parameters.
/dataset/Elspotprices?limit=5Elspotprices — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Danish data service Energi: common questions
Is Danish data service Energi free to use?
Yes — Danish data service Energi is a free weather API. Free tier: Free — no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Danish data service Energi need an API key?
No — Danish data service Energi needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Danish data service Energi from the browser?
Not directly — Danish data service Energi doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Danish data service Energi up right now?
As of our last scheduled check, Danish data service Energi is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.