Retrieve Price Time Series
Retrieve a price object for a given subscription, including the variable price time series to optimize your consumption against.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
"sub_1"
Query Parameters
Start date of the period at 00:00:00 in local time of the customer (format yyyy-mm-dd)
"2025-02-01"
End date of the period at 23:59:59 in local time of the customer (format yyyy-mm-dd)
"2025-02-01"
Response
price
The id of the subscription
"sub_rocbrf1u5e48mm0reeqoag90"
The unit of the price
"ct/kWh"
The currency of the price
"EUR"
The time resolution of the price data points
60min
, 15min
"60min"
Reference market for electricity prices
"EPEX Day-Ahead Hourly"
List of price data points. Null if subscription is not active (either hasn't started yet or has ended).
[
{
"timestamp": "2024-01-31T00:00:00Z",
"amount": 24.44,
"components": [
{ "type": "electricity", "amount": 8.77 },
{ "type": "grid", "amount": 9.47 },
{ "type": "levies", "amount": 6.2 }
]
},
{
"timestamp": "2024-01-31T01:00:00Z",
"amount": 22.15,
"components": [
{ "type": "electricity", "amount": 7.48 },
{ "type": "grid", "amount": 9.47 },
{ "type": "levies", "amount": 5.2 }
]
},
{
"timestamp": "2024-01-31T02:00:00Z",
"amount": 20.88,
"components": [
{ "type": "electricity", "amount": 6.21 },
{ "type": "grid", "amount": 9.47 },
{ "type": "levies", "amount": 5.2 }
]
},
{
"timestamp": "2024-01-31T03:00:00Z",
"amount": 19.97,
"components": [
{ "type": "electricity", "amount": 5.3 },
{ "type": "grid", "amount": 9.47 },
{ "type": "levies", "amount": 5.2 }
]
},
{
"timestamp": "2024-01-31T04:00:00Z",
"amount": 21.56,
"components": [
{ "type": "electricity", "amount": 6.89 },
{ "type": "grid", "amount": 9.47 },
{ "type": "levies", "amount": 5.2 }
]
}
]