← 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.025948181818181818,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.04161,
      "min_eur_kwh": 0.02028,
      "rank": 1,
      "zone": "NO4",
      "zone_name": "Tromsø"
    },
    {
      "avg_eur_kwh": 0.05225318181818182,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.13303,
      "min_eur_kwh": 0.01154,
      "rank": 2,
      "zone": "SE1",
      "zone_name": "Luleå"
    },
    {
      "avg_eur_kwh": 0.05323193181818182,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.12869,
      "min_eur_kwh": 0.00966,
      "rank": 3,
      "zone": "SE2",
      "zone_name": "Sundsvall"
    },
    {
      "avg_eur_kwh": 0.06354045454545454,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.09928,
      "min_eur_kwh": 0.04252,
      "rank": 4,
      "zone": "NO3",
      "zone_name": "Trondheim"
    },
    {
      "avg_eur_kwh": 0.08253715909090908,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.15333,
      "min_eur_kwh": 0.01347,
      "rank": 5,
      "zone": "SE3",
      "zone_name": "Stockholm"
    },
    {
      "avg_eur_kwh": 0.0946640909090909,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.12616,
      "min_eur_kwh": 0.02986,
      "rank": 6,
      "zone": "NO1",
      "zone_name": "Oslo"
    },
    {
      "avg_eur_kwh": 0.09472386363636363,
      "country": "SE",
      "hours": 88,
      "max_eur_kwh": 0.1954,
      "min_eur_kwh": 0.0128,
      "rank": 7,
      "zone": "SE4",
      "zone_name": "Malmö"
    },
    {
      "avg_eur_kwh": 0.09555318181818181,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.12669,
      "min_eur_kwh": 0.03185,
      "rank": 8,
      "zone": "NO2",
      "zone_name": "Kristiansand"
    },
    {
      "avg_eur_kwh": 0.09993909090909091,
      "country": "NO",
      "hours": 22,
      "max_eur_kwh": 0.11844,
      "min_eur_kwh": 0.06652,
      "rank": 9,
      "zone": "NO5",
      "zone_name": "Bergen"
    }
  ],
  "date": "2026-05-22",
  "most_expensive_zone": "NO5",
  "success": true
}