← Nordisk el

Aktuellt pris

GET /electricity/current/:zone

Get the aktuell hour's electricity spotpris for a specifik Nordic budgivningszon (e.g., NO1 for Oslo area, SE3 for Stockholm area). Returnerar the pris in EUR/MWh tillsammans med the aktuell hour period. Väsentligt för smart hemautomation som adjusts heating, elbilsladdning, or appliance usage baserad on realtids elkostnad. Även useful for energi cost övervakning instrumentpaneler and pris alert system. Data från Nord Pool.

Parametrar

zone obligatorisk

Zone code (NO1, SE3, etc)

Exempelförfrågningar

Grundläggande användning
curl https://nordapi.ee/api/v1/electricity/current/NO1
Current price in Oslo area (NO1)
curl https://nordapi.ee/api/v1/electricity/current/NO1
Current price in Stockholm area (SE3)
curl https://nordapi.ee/api/v1/electricity/current/SE3
Current price in Bergen area (NO5)
curl https://nordapi.ee/api/v1/electricity/current/NO5

Livesvar

{
  "country": "NO",
  "hour_end": "2026-04-05T21:00:00Z",
  "hour_start": "2026-04-05T20:00:00Z",
  "local_currency": "NOK",
  "price_eur_kwh": 0.10407,
  "price_eur_mwh": 104.07,
  "price_local_kwh": 1.16642,
  "success": true,
  "zone": "NO1",
  "zone_name": "Oslo"
}