Discover/epexspot.com API
live

epexspot.com 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.

Endpoints
4
Updated
4mo ago
Try it
Auction name. Accepted values: MRC, GB, CH, 30-call-GB.
Product resolution. Accepted values: 15 (15 min), 60 (60 min index).
Trading modality. Accepted values: Auction, Continuous, Capacity, Mgo.
Market area/bidding zone code (e.g. DE-LU, FR, NL, AT, BE, CH, GB, PL).
Market segment. Accepted values: DayAhead, Intraday.
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f4c30fc5-0c2a-4b85-8bbe-e3ddda5e8775/get_market_results?market_area=DE-LU' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Fetch market results for a given trading modality, market area, and delivery date. Returns hourly price data with timestamps.

Input
ParamTypeDescription
auctionstringAuction name. Accepted values: MRC, GB, CH, 30-call-GB.
productstringProduct resolution. Accepted values: 15 (15 min), 60 (60 min index).
modalitystringTrading modality. Accepted values: Auction, Continuous, Capacity, Mgo.
market_areastringMarket area/bidding zone code (e.g. DE-LU, FR, NL, AT, BE, CH, GB, PL).
sub_modalitystringMarket segment. Accepted values: DayAhead, Intraday.
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 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": 130.54,
          "datetime": "2026-05-13T22:00:00",
          "timestamp_ms": 1778709600000,
          "volume_total": null
        },
        {
          "price": 121.75,
          "datetime": "2026-05-13T23:00:00",
          "timestamp_ms": 1778713200000,
          "volume_total": null
        }
      ],
      "modality": "Auction",
      "market_area": "DE-LU",
      "sub_modality": "DayAhead",
      "delivery_date": "2026-05-14"
    },
    "status": "success"
  }
}

About the epexspot.com 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.

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.

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,000250 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.