Nord Pool day-ahead electricity spot prices (EUR/MWh, 15-min resolution) for the ee, fi, l
Nord Pool day-ahead electricity spot prices (EUR/MWh, 15-min resolution) for the ee, fi, lv and lt bidding zones, from the Estonian TSO Elering's open-data API. Defaults to the last 24h; ?start=&end= (ISO 8601 UTC, max 7 days) select a window, ?zone=fi filters one zone. Day-ahead prices publish once daily; served with a 1h cache.
2000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-08
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"zone": "all"
},
"type": "http"
},
"output": {
"example": {
"end": "2026-07-14T09:00:00.000Z",
"source": "Nord Pool day-ahead prices via Elering open data (dashboard.elering.ee)",
"start": "2026-07-13T09:00:00.000Z",
"unit": "EUR/MWh",
"zones": {
"ee": [
{
"price_eur_mwh": 17.8,
"time": "2026-07-13T09:00:00Z"
}
],
"fi": [
{
"price_eur_mwh": 4.9,
"time": "2026-07-13T09:00:00Z"
}
],
"lt": [
{
"price_eur_mwh": 17.8,
"time": "2026-07-13T09:00:00Z"
}
],
"lv": [
{
"price_eur_mwh": 17.8,
"time": "2026-07-13T09:00:00Z"
}
]
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"end": {
"description": "Window end ISO 8601 UTC (default now)",
"type": "string"
},
"start": {
"description": "Window start ISO 8601 UTC (default end-24h)",
"type": "string"
},
"zone": {
"default": "all",
"description": "Bidding zone, or all four",
"enum": [
"ee",
"fi",
"lv",
"lt",
"all"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.greeneris.io/v1/nordics/power-price" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.greeneris.io/v1/nordics/power-price");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.greeneris.io/v1/nordics/power-price")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3922.json, and this resource appears in /discovery/resources and /discovery/search.