← 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.02626375,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.04684,
      "min_eur_kwh": 0.0191,
      "rank": 1,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.045904375,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.08685,
      "min_eur_kwh": 0.02056,
      "rank": 2,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.05125864583333333,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.09981,
      "min_eur_kwh": 0.01541,
      "rank": 3,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.0716828125,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.11964,
      "min_eur_kwh": 0.02055,
      "rank": 4,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.08471479166666666,
      "country": "SE",
      "hours": 96,
      "max_eur_kwh": 0.15325,
      "min_eur_kwh": 0.02055,
      "rank": 5,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.10896875,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.13395,
      "min_eur_kwh": 0.08549,
      "rank": 6,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.12385708333333334,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.13862,
      "min_eur_kwh": 0.10957,
      "rank": 7,
      "zone": "NO1",
      "zone_name": "Oslo"
    },
    {
      "avg_eur_kwh": 0.12511125,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.13825,
      "min_eur_kwh": 0.113,
      "rank": 8,
      "zone": "NO5",
      "zone_name": "Bergen"
    },
    {
      "avg_eur_kwh": 0.142775,
      "country": "NO",
      "hours": 24,
      "max_eur_kwh": 0.16237,
      "min_eur_kwh": 0.1078,
      "rank": 9,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    }
  ],
  "date": "2026-09-02",
  "most_expensive_zone": "NO2",
  "success": true
}