Price day ahead
Combined
get
/price-day-ahead/combinedWhen signed in, you can use the interactive API Playground to query the Electricity Maps API directly from this page
Get both actual and forecasted day-ahead prices for a zone in a single response.
Query Parameters
temporalGranularity?string
The temporal granularity of the data to get.
Default
"hourly"Example
"hourly"Value in
- "5_minutes"
- "15_minutes"
- "hourly"
- "daily"
- "monthly"
- "quarterly"
- "yearly"
zone?string
An Electricity Maps zone key.
Example
"DK-DK2"lat?number
Latitude of the location to get the data for.
Example
41.877lon?number
Longitude of the location to get the data for.
Example
-88.0703disableCallerLookup?boolean
If true, the fallback IP-based zone lookup will not be performed.
Default
falsehorizonHours?number
The number of hours ahead to forecast.
Default
24Value in
- 6
- 24
- 48
- 72
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/price-day-ahead/combined"{ "zone": "DK-DK2", "data": [ { "zone": "DK-DK2", "datetime": "2024-05-19T03:00:00.000Z", "createdAt": "2024-05-16T03:48:50.419Z", "updatedAt": "2025-07-25T12:32:42.039Z", "value": 100, "unit": "EUR/MWh", "source": "settled_and_published_price", "temporalGranularity": "hourly" } ]}