Get a list of tariffs for a specific location
curl --request GET \
--url https://cloud.volttime.com/api/v3/tariffs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": "architecto"
}'
{
"data": [
{
"type": "epex-spot",
"location": "GW",
"timestamp": "2025-07-04T13:42:20.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-07-04T13:42:20.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}
See the documentation for more information.
The response is of type object
.
curl --request GET \
--url https://cloud.volttime.com/api/v3/tariffs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": "architecto"
}'
{
"data": [
{
"type": "epex-spot",
"location": "GW",
"timestamp": "2025-07-04T13:42:20.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-07-04T13:42:20.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}