GET /electricity/stats/:zone
Get daglig elpris statistics for a specifik Nordic budgivningszon, inklusive the minimum, maximum, and average pris for the day, plus the cheapest and most expensive timmar. Valfritt ange a datum for historisk stats. Användbart för daglig energi cost summaries, historisk pris analysis, and som hjälper konsumenter understand deras elkostnad mönster without processing all 24 hourly data punkter themselves. Data från Nord Pool.
zone
obligatorisk
Zone
date
valfri
Date
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
zone |
Ja | - | Zone |
date |
Nej | - | Date |
curl https://nordapi.ee/api/v1/electricity/stats/NO1
curl https://nordapi.ee/api/v1/electricity/stats/NO1
curl "https://nordapi.ee/api/v1/electricity/stats/SE3?date=2026-03-20"
curl https://nordapi.ee/api/v1/electricity/stats/NO4
{
"date": "2026-04-05",
"stats": {
"avg_eur_kwh": 0.07441375,
"cheapest_hour": "2026-04-05T00:00:00Z",
"hours_with_data": 24,
"max_eur_kwh": 0.10407,
"min_eur_kwh": 0.06346,
"most_expensive_hour": "2026-04-05T20:00:00Z"
},
"success": true,
"zone": "NO1",
"zone_name": "Oslo"
}