← Nordic Electricity

Current Price

GET /electricity/current/:zone

Get the current hour's electricity spot price for a specific Nordic bidding zone (e.g., NO1 for Oslo area, SE3 for Stockholm area). Returns the price in EUR/MWh along with the current hour period. Essential for smart home automation that adjusts heating, EV charging, or appliance usage based on real-time electricity cost. Also useful for energy cost monitoring dashboards and price alert systems. Data from Nord Pool.

Parameters

zone required

Zone code (NO1, SE3, etc)

Example Requests

Basic usage
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

Live Response

{
  "country": "NO",
  "hour_end": "2026-04-05T20:00:00Z",
  "hour_start": "2026-04-05T19:00:00Z",
  "local_currency": "NOK",
  "price_eur_kwh": 0.09545,
  "price_eur_mwh": 95.45,
  "price_local_kwh": 1.0698,
  "success": true,
  "zone": "NO1",
  "zone_name": "Oslo"
}