← 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-03-20"

Live Response

{
  "cheapest_zone": "NO4",
  "data": [
    {
      "avg_eur_kwh": 0.03865791666666667,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.0837,
      "min_eur_kwh": 0.01612,
      "rank": 1,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.045244375,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.106,
      "min_eur_kwh": 0.00889,
      "rank": 2,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.050880416666666664,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.106,
      "min_eur_kwh": 0.01056,
      "rank": 3,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.06597177083333333,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.11399,
      "min_eur_kwh": 0.00904,
      "rank": 4,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.08086885416666667,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.13142,
      "min_eur_kwh": 0.00839,
      "rank": 5,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.08426,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.11148,
      "min_eur_kwh": 0.05991,
      "rank": 6,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.10624125,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.12498,
      "min_eur_kwh": 0.09232,
      "rank": 7,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    },
    {
      "avg_eur_kwh": 0.1075975,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.12252,
      "min_eur_kwh": 0.09277,
      "rank": 8,
      "zone": "NO5",
      "zone_name": "Bergen"
    },
    {
      "avg_eur_kwh": 0.1085,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.12415,
      "min_eur_kwh": 0.09277,
      "rank": 9,
      "zone": "NO1",
      "zone_name": "Oslo"
    }
  ],
  "date": "2026-05-10",
  "most_expensive_zone": "NO1",
  "success": true
}