← Nordic Electricity

Price History

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.

Parameters

zone required

Zone

start_date required

Start

end_date required

End

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/electricity/history/NO1?start_date=2026-05-20&end_date=2026-05-24"
Oslo price history for a week
curl "https://nordapi.ee/api/v1/electricity/history/NO1?start_date=2026-05-17&end_date=2026-05-24"
Stockholm price history for March
curl "https://nordapi.ee/api/v1/electricity/history/SE3?start_date=2026-05-01&end_date=2026-05-24"
Bergen area price history for a weekend
curl "https://nordapi.ee/api/v1/electricity/history/NO5?start_date=2026-03-21&end_date=2026-03-22"

Live Response

{
  "count": 0,
  "data": [],
  "end_date": "2026-05-24",
  "start_date": "2026-05-20",
  "success": true,
  "zone": "NO1"
}