GET /electricity/stats/:zone
Get daily electricity price statistics for a specific Nordic bidding zone, incluyendo the minimum, maximum, and average price for the day, plus the cheapest and most expensive hours. Optionally specify a date for historical stats. Útil para daily costo energético summaries, historical price analysis, and ayudando a consumers understand their costo de electricidad patterns without processing all 24 hourly data points themselves. Data from Nord Pool.
zone
requerido
Zone
date
opcional
Date
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
zone |
Si | - | Zone |
date |
No | - | 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"
}