Chargers
Tariffs
Chargers > Actions
Chargers > Connectors
Chargers > Settings
Sites > Chargers
Sites > Connectors
Sites > Smart Charging
[Deprecated] Chargers
[Deprecated] Commands
[Deprecated] Datapoints
[Deprecated] Sites
[Deprecated] Teams
[Deprecated] Users
Tariffs
Get Tariffs
Tariffs
Get Tariffs
Get a list of tariffs for a specific location
GET
/
api
/
v3
/
tariffs
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-05-02T11:43:23.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-05-02T11:43:23.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}
Authorizations
See the documentation for more information.
Body
application/json
Response
200 - application/json
The response is of type object
.
Was this page helpful?
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-05-02T11:43:23.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-05-02T11:43:23.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}