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
3mo 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 →
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
13f.info API
13f.info API
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
morningstar.com.au API
Access comprehensive financial data for Australian stocks, ETFs, and managed funds including key metrics, valuations, dividends, and historical prices. Search securities, review company profiles and ownership details, and stay informed with market news and upcoming dividend information.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
EPEX SPOT API – European Power Market Data · Parse