Discover/EPEX SPOT API
live

EPEX SPOT APIepexspot.com

Access EPEX SPOT auction results, intraday prices, auction status, and newsroom articles via a simple API. Covers DE-LU, FR, GB, NL, AT, BE, CH, PL, and more.

Endpoint health
verified 4d ago
get_market_areas
get_market_results
get_newsroom_articles
get_auction_status
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the EPEX SPOT API?

The EPEX SPOT API provides access to European wholesale electricity market data across 4 endpoints, covering day-ahead and intraday auction results, live auction status, available market areas, and newsroom articles. The get_market_results endpoint returns hourly price and volume entries for specific bidding zones and delivery dates, while get_auction_status surfaces real-time operational messages and publication status across all active markets.

Try it
Auction name.
Product resolution.
Trading modality.
Market area/bidding zone code.
Market segment.
Delivery date in YYYY-MM-DD format. Omitting defaults to the current UTC date.
api.parse.bot/scraper/f4c30fc5-0c2a-4b85-8bbe-e3ddda5e8775/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f4c30fc5-0c2a-4b85-8bbe-e3ddda5e8775/get_market_results?auction=MRC&product=15&modality=Auction&market_area=AT&sub_modality=DayAhead&delivery_date=2026-07-10' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace epexspot-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.epex_spot_market_data_api import (
    EpexSpot, MarketArea, Modality, SubModality, Auction, Product
)

epex = EpexSpot()

# Fetch day-ahead auction results for Germany
result = epex.marketresults.search(
    market_area=MarketArea.DE_LU,
    modality=Modality.AUCTION,
    sub_modality=SubModality.DAY_AHEAD,
    auction=Auction.MRC,
    product=Product.SIXTY_MIN,
    delivery_date="2026-06-10",
)
print(result.delivery_date, result.market_area)
for entry in result.results:
    print(entry.datetime, entry.price)

# List latest newsroom articles
for article in epex.articles.list():
    print(article.title, article.date, article.category)

# Get current market status
status = epex.marketstatuses.get()
print(status.last_update)
for s in status.auction_statuses:
    print(s.modality, s.status, s.order_book_closure)

# Retrieve available market configuration
config = epex.marketconfigs.get()
for area in config.market_areas:
    print(area.value, area.label)
All endpoints · 4 totalmissing one? ·

Fetch market results for a given trading modality, market area, and delivery date. Returns hourly price data with timestamps. The full day's results are returned in one response. An empty results array indicates no data is available for the given parameters (e.g. future date not yet published).

Input
ParamTypeDescription
auctionstringAuction name.
productstringProduct resolution.
modalitystringTrading modality.
market_areastringMarket area/bidding zone code.
sub_modalitystringMarket segment.
delivery_datestringDelivery date in YYYY-MM-DD format. Omitting defaults to the current UTC date.
Response
{
  "type": "object",
  "fields": {
    "auction": "string, the queried auction name",
    "details": "object or null, additional chart details from the platform",
    "product": "string, the queried product resolution",
    "results": "array of hourly price entries with timestamp_ms, datetime, price, and volume_total fields",
    "modality": "string, the queried modality",
    "market_area": "string, the queried market area code",
    "sub_modality": "string, the queried sub-modality",
    "delivery_date": "string, the delivery date in YYYY-MM-DD format"
  },
  "sample": {
    "data": {
      "auction": "MRC",
      "details": null,
      "product": "60",
      "results": [
        {
          "price": 124.91,
          "datetime": "2026-06-09T22:00:00",
          "timestamp_ms": 1781042400000,
          "volume_total": null
        }
      ],
      "modality": "Auction",
      "market_area": "DE-LU",
      "sub_modality": "DayAhead",
      "delivery_date": "2026-06-10"
    },
    "status": "success"
  }
}

About the EPEX SPOT API

Market Results and Price Data

The get_market_results endpoint is the core of the API. It accepts filter parameters including modality (Auction, Continuous, Capacity, Mgo), sub_modality (DayAhead or Intraday), market_area (e.g. DE-LU, FR, NL, GB, CH, AT, BE, PL), product (15-minute or 60-minute resolution), and a delivery_date in YYYY-MM-DD format. The response contains an array of results objects, each with timestamp_ms, datetime, price, and volume fields, alongside a details object for chart-level metadata when available. Omitting delivery_date defaults to the current UTC date.

Auction Status and Market Configuration

get_auction_status returns the current operational state of all markets, including per-market status, order_book_closure times, publication_status, and free-text comments. It also includes an operational_messages array with timestamped text notifications — useful for detecting delays or unscheduled interruptions. get_market_areas exposes the full set of valid filter values: available market_areas, modalities, auctions, sub_modalities, and products, each as labeled option arrays. This endpoint is the right starting point before constructing a get_market_results query.

Newsroom

get_newsroom_articles returns the latest articles and press releases from the EPEX SPOT newsroom. Each entry includes title, date, category, and link. This is suitable for monitoring regulatory announcements, market rule changes, and exchange news alongside price data.

Reliability & maintenanceVerified

The EPEX SPOT API is a managed, monitored endpoint for epexspot.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when epexspot.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official epexspot.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a day-ahead price dashboard tracking hourly electricity prices across DE-LU, FR, and NL bidding zones.
  • Alert on auction status changes using the auction_statuses array from get_auction_status to detect delays or closures.
  • Compare 15-minute vs 60-minute intraday prices by switching the product parameter in get_market_results.
  • Populate a time-series database with historical daily price and volume data for a specific market area and delivery date.
  • Monitor operational messages from get_auction_status to detect unscheduled market interruptions.
  • Aggregate newsroom articles via get_newsroom_articles to track regulatory changes and exchange announcements alongside price feeds.
  • Validate user-provided market area and modality inputs against the enumerated options returned by get_market_areas.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does EPEX SPOT have an official developer API?+
EPEX SPOT offers a member-facing data portal and some data products for registered participants, but there is no publicly documented REST API available to all developers. This Parse API provides structured access to the public market data without requiring exchange membership.
What does `get_market_results` return and how granular is the price data?+
It returns an array of price entries under the results field. Each entry includes timestamp_ms (Unix millisecond timestamp), datetime, price, and volume for the queried period. Resolution depends on the product parameter: pass 15 for 15-minute intervals or 60 for hourly index data. Results are scoped to a single market_area, sub_modality, and delivery_date per request.
Does the API cover historical delivery dates beyond the current day?+
The delivery_date parameter accepts any date in YYYY-MM-DD format, so you can query past delivery dates that appear in the EPEX SPOT platform. However, the depth of available historical data depends on what the source publishes, and very old dates may return empty results. If you need a dedicated historical range endpoint, you can fork this API on Parse and revise it to add that capability.
Is intraday continuous trading data available, or only auction results?+
The modality parameter accepts Continuous in addition to Auction, and sub_modality accepts Intraday. Setting both retrieves intraday continuous market data for supported bidding zones. Not all market areas support every modality combination; use get_market_areas to check valid combinations before querying.
Does the API return individual trade-level order book data?+
No. The API returns aggregated price and volume results per time interval, plus high-level details metadata. Individual order book entries, bid/ask depth, or participant-level data are not exposed. You can fork this API on Parse and revise it to add an order book endpoint if that surface becomes publicly accessible.
Page content last updated . Spec covers 4 endpoints from epexspot.com.
Related APIs in FinanceSee all →
powernext.com API
Access real-time and historical European energy market data including natural gas spot and futures prices, German power futures, and intraday power information. Monitor market snapshots and Guarantees of Origin to stay informed on energy market movements across Europe.
data.nordpoolgroup.com API
Monitor Nord Pool electricity market data including day-ahead prices, system prices, intraday statistics, and market areas across different regions. Access real-time and recent historical pricing information to track energy market trends and make informed decisions about electricity trading and consumption.
energy-charts.de API
Monitor real-time electricity prices, production data, and market forecasts across Germany and Europe to track energy costs and grid conditions. Access day-ahead and intraday pricing, power generation forecasts, cross-border trading flows, and traffic signal alerts for comprehensive energy market insights.
euenergy.live API
Monitor real-time and historical electricity prices across Europe with hourly granularity, including load data and city-level pricing information. Look up current rates by country or city, track price trends over time, and access comprehensive bulk historical data to analyze European energy markets.
ueex.com.ua API
Access real-time and historical pricing data for Ukrainian energy commodities including natural gas, electricity, coal, LPG, and timber directly from official exchange quotations and auction results. Monitor trading indices, check medium long-term market rates, and view the trading calendar to stay informed on energy market trends.
ameren.com API
Retrieve hourly electricity prices, current outage summaries, rate information, and energy efficiency programs from Ameren. Covers Illinois and Missouri service areas with real-time and forecast pricing data.
bloomberg.com API
Track stock indices, commodities, currencies, and bonds in real-time, while monitoring market movers and staying updated with the latest financial news. Get comprehensive Bloomberg market data to make informed investment decisions across multiple asset classes.
comexlive.org API
Monitor real-time gold, silver, and platinum prices from COMEX futures markets, and stay updated with the latest commodity news and articles. Get current pricing data for all COMEX commodities and access detailed news coverage to inform your trading and investment decisions.