# Nord Pool Day-Ahead Electricity Spot Prices (Elering Open Data)

> Nord Pool Day-Ahead Electricity Spot Prices (Elering Open Data) is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns Nord Pool day-ahead electricity spot prices in EUR/MWh at 15-minute resolution for Estonian, Finnish, Latvian, and Lithuanian bidding zones via the Elering open-data API.

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/nordics/power-price
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nord-pool-day-ahead-electricity-spot-prices-elering-open-data-77ad8ffa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cYLxRyYSGnP_qWJnJOlTL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability nord-pool-day-ahead-electricity-spot-prices-elering-open-data-77ad8ffa
```

Example prompt: Can you get me the Nord Pool day-ahead electricity spot prices for the Finnish and Estonian bidding zones from 2024-06-01T00:00:00Z to 2024-06-02T00:00:00Z in EUR/MWh at 15-minute resolution?

## When to prefer this

Use this endpoint when you need granular (15-minute) Nord Pool day-ahead electricity spot prices specifically for the Baltic and Finnish bidding zones (ee, fi, lv, lt), sourced authoritatively from the Estonian TSO Elering. Prefer this over generic energy APIs when you need EUR/MWh pricing with zone-level filtering and historical windows up to 7 days.

## Known failure modes

- Requested time window exceeds 7-day maximum — returns error
- Invalid zone parameter value — returns validation error
- Invalid ISO 8601 date format for start/end — returns parse error
- Data not yet published for future day-ahead prices — returns empty or partial results
- Upstream Elering API unavailable — returns 502 or cached stale data

## How this service works

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.

## Output

A time-series of day-ahead electricity spot prices in EUR/MWh at 15-minute resolution, indexed by timestamp, for one or all four bidding zones (ee, fi, lv, lt). Data is sourced from Elering's open-data API, covers up to 7 days per request, and is served with a 1-hour cache. Day-ahead prices publish once daily.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "end": {
       "type": "string",
       "description": "Window end ISO 8601 UTC (default now)"
      },
      "zone": {
       "enum": [
        "ee",
        "fi",
        "lv",
        "lt",
        "all"
       ],
       "type": "string",
       "default": "all",
       "description": "Bidding zone, or all four"
      },
      "start": {
       "type": "string",
       "description": "Window start ISO 8601 UTC (default end-24h)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nord-pool-day-ahead-electricity-spot-prices-elering-open-data-77ad8ffa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
