GET /electricity/history/:zone
Get historical electricity spot prices for a specific Nordic bidding zone over a custom date range. Returns hourly prices for every day in the range. Useful for analyzing long-term electricity price trends, calculating average costs over billing periods, building historical price charts, and performing seasonal analysis of energy costs in Norway and Sweden. Data from Nord Pool.
zone
required
Zone
start_date
required
Start
end_date
required
End
| Name | Required | Default | Description |
|---|---|---|---|
zone |
Yes | - | Zone |
start_date |
Yes | - | Start |
end_date |
Yes | - | End |
curl "https://nordapi.ee/api/v1/electricity/history/NO1?start_date=2026-05-20&end_date=2026-05-24"
curl "https://nordapi.ee/api/v1/electricity/history/NO1?start_date=2026-05-17&end_date=2026-05-24"
curl "https://nordapi.ee/api/v1/electricity/history/SE3?start_date=2026-05-01&end_date=2026-05-24"
curl "https://nordapi.ee/api/v1/electricity/history/NO5?start_date=2026-03-21&end_date=2026-03-22"
{
"count": 0,
"data": [],
"end_date": "2026-05-24",
"start_date": "2026-05-20",
"success": true,
"zone": "NO1"
}