Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Load forecast input
Reference point for the load forecast
subscription
"subscription"
Required subscription ID when scope is 'subscription'
"sub_123456789"
Time resolution of the load forecast data points
15min
"15min"
Unit of measurement for the forecast values
KW
"KW"
Array of load forecast data points. Must be strictly consecutive with exactly 15-minute intervals and without overlaps or gaps and can only contain one data point per 15-minute interval.
[
{
"start": "2025-03-31T22:00:00.000Z",
"value": 0.2
},
{
"start": "2025-03-31T22:15:00.000Z",
"value": 0.22
}
]