Skip to main content
This guide walks you through making your first request to the Voltpath API. In a few minutes, you will retrieve day-ahead electricity prices for Germany for the past seven days and understand how the API structures its responses.
1

Choose your base URL

The Voltpath API is hosted at the following base URL. No API key or authentication is required based on the current specification.
2

Fetch day-ahead prices

Send a GET request to /api/v1/prices with query parameters to filter by bidding zone, time range, and resolution.
3

Read the response

All Voltpath endpoints return data inside a standard envelope. The meta object contains provenance information, the resolved time range, and upstream data sources. The data array holds the result rows.
Each row in the data array is a PriceRow containing the timestamp, bidding zone code, day-ahead price in EUR per MWh (price_mwh), an interpolation flag, and the year.
4

Filter by multiple zones

To retrieve data for more than one bidding zone, repeat the zone query parameter for each code.
Use resolution=auto (the default) and let the server select the most appropriate granularity for your requested time range.

Next steps

Bidding zones

Learn how European bidding zones work and how to use zone codes in your queries.

API reference

Explore all available endpoints, parameters, and response schemas.