← 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.01255375,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.03592,
      "min_eur_kwh": 0.00272,
      "rank": 1,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.0127525,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.02115,
      "min_eur_kwh": 0.00545,
      "rank": 2,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.013360416666666666,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.044,
      "min_eur_kwh": 0.00171,
      "rank": 3,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.03216010416666667,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.06917,
      "min_eur_kwh": 0.00193,
      "rank": 4,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.036302916666666664,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.05452,
      "min_eur_kwh": 0.00841,
      "rank": 5,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.04882375,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.09543,
      "min_eur_kwh": 0.00358,
      "rank": 6,
      "zone": "NO1",
      "zone_name": "Oslo"
    },
    {
      "avg_eur_kwh": 0.04962072916666667,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.11757,
      "min_eur_kwh": 0.00196,
      "rank": 7,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.05092666666666667,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.08656,
      "min_eur_kwh": 0.00949,
      "rank": 8,
      "zone": "NO5",
      "zone_name": "Bergen"
    },
    {
      "avg_eur_kwh": 0.052630416666666666,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.11534,
      "min_eur_kwh": -6.5e-4,
      "rank": 9,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    }
  ],
  "date": "2026-07-05",
  "most_expensive_zone": "NO2",
  "success": true
}