← Nordischer Strom

Tagesstatistiken

GET /electricity/stats/:zone

Erhalten Sie daily Strompreis statistics for a specific Nordic Gebotszone, einschließlich the minimum, maximum, und average price for the day, plus the cheapest und most expensive hours. Optional specify a date for historical stats. Nützlich für daily energy cost summaries, historical price analysis, und helping consumers understand their electricity cost patterns without processing all 24 hourly data points themselves. Daten von Nord Pool.

Parameter

zone erforderlich

Zone

date optional

Date

Beispielanfragen

Grundlegende Verwendung
curl https://nordapi.ee/api/v1/electricity/stats/NO1
Today's stats for Oslo (NO1)
curl https://nordapi.ee/api/v1/electricity/stats/NO1
Stats for Stockholm on a past date
curl "https://nordapi.ee/api/v1/electricity/stats/SE3?date=2026-03-20"
Stats for Tromsoe area (NO4)
curl https://nordapi.ee/api/v1/electricity/stats/NO4

Live-Antwort

{
  "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"
}