← 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": "SE1",
  "data": [
    {
      "avg_eur_kwh": 0.042380208333333336,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.0894,
      "min_eur_kwh": 0.01363,
      "rank": 1,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.04261239583333333,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.08882,
      "min_eur_kwh": 0.01436,
      "rank": 2,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.04417708333333333,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.07644,
      "min_eur_kwh": 0.02285,
      "rank": 3,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.05463166666666667,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.0724,
      "min_eur_kwh": 0.03429,
      "rank": 4,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.05585875,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.06302,
      "min_eur_kwh": 0.03528,
      "rank": 5,
      "zone": "NO5",
      "zone_name": "Bergen"
    },
    {
      "avg_eur_kwh": 0.0663778125,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.09,
      "min_eur_kwh": 0.02608,
      "rank": 6,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.07641,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.1012,
      "min_eur_kwh": 0.03528,
      "rank": 7,
      "zone": "NO1",
      "zone_name": "Oslo"
    },
    {
      "avg_eur_kwh": 0.09223052083333333,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.18633,
      "min_eur_kwh": 0.02612,
      "rank": 8,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.10203625,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.12867,
      "min_eur_kwh": 0.03528,
      "rank": 9,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    }
  ],
  "date": "2026-06-26",
  "most_expensive_zone": "NO2",
  "success": true
}