Renewable energy

Forecast

get
/renewable-energy/forecast
When signed in, you can use the interactive API Playground to query the Electricity Maps API directly from this page

Get the renewable energy forecast for a zone

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.

Example41.877
lon?number

Longitude of the location to get the data for.

Example-88.0703
disableCallerLookup?boolean

If true, the fallback IP-based zone lookup will not be performed.

Defaultfalse
horizonHours?number

The number of hours ahead to forecast.

Default24

Value in

  • 6
  • 24
  • 48
  • 72
flowTraced?boolean

If true, the response returns flow-traced (consumption-based) values.

Defaulttrue
Exampletrue

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/renewable-energy/forecast"
{  "zone": "string",  "data": [    {      "zone": "DK-DK2",      "datetime": "2026-01-01T01:00:00.000Z",      "updatedAt": "2026-01-01T02:00:00.000Z",      "createdAt": "2026-01-01T00:00:00.000Z",      "unit": "%",      "value": 67,      "flowTraced": true,      "isEstimated": false,      "estimationMethod": "string",      "temporalGranularity": "hourly"    }  ]}