← Nordic Electricity

Zone Comparison

GET /electricity/compare

Compare electricity spot prices across all 9 Nordic bidding zones side by side for today or a specified date. Shows the current price in each zone with currency in EUR/MWh and local currency equivalents. Useful for identifying the cheapest and most expensive electricity regions right now, building cross-zone comparison dashboards, and helping businesses with multi-location operations optimize energy purchasing. Data from Nord Pool.

Parameters

date optional

Date

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/electricity/compare
Compare all zones today
curl https://nordapi.ee/api/v1/electricity/compare
Compare all zones on a specific date
curl "https://nordapi.ee/api/v1/electricity/compare?date=2026-05-20"

Live Response

{
  "cheapest_zone": "NO4",
  "data": [
    {
      "avg_eur_kwh": 0.002184090909090909,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.0026,
      "min_eur_kwh": 0.0009,
      "rank": 1,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.035542727272727274,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.0898,
      "min_eur_kwh": 0.00253,
      "rank": 2,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.03841863636363636,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.10223,
      "min_eur_kwh": 0.0024,
      "rank": 3,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.07934318181818181,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.09569,
      "min_eur_kwh": 0.06924,
      "rank": 4,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.08591488636363637,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.22655,
      "min_eur_kwh": 0.01665,
      "rank": 5,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.1094459090909091,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.11709,
      "min_eur_kwh": 0.10027,
      "rank": 6,
      "zone": "NO5",
      "zone_name": "Bergen"
    },
    {
      "avg_eur_kwh": 0.12016306818181818,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.33874,
      "min_eur_kwh": 0.01671,
      "rank": 7,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.13155454545454545,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.20431,
      "min_eur_kwh": 0.09857,
      "rank": 8,
      "zone": "NO1",
      "zone_name": "Oslo"
    },
    {
      "avg_eur_kwh": 0.15047272727272729,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.27965,
      "min_eur_kwh": 0.1,
      "rank": 9,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    }
  ],
  "date": "2026-08-12",
  "most_expensive_zone": "NO2",
  "success": true
}