Authorizations
Body
application/json
Example:
Response
200 - application/json
Example:
Get a list of tariffs for a specific location
curl --request GET \
--url https://app.plugchoice.com/api/v3/tariffs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": "architecto"
}'{
"data": [
{
"type": "epex-spot",
"location": "GW",
"timestamp": "2025-11-19T15:28:21.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-11-19T15:28:21.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}Show child attributes
Was this page helpful?
curl --request GET \
--url https://app.plugchoice.com/api/v3/tariffs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": "architecto"
}'{
"data": [
{
"type": "epex-spot",
"location": "GW",
"timestamp": "2025-11-19T15:28:21.000000Z",
"price": 5,
"price_includes_tax": false
},
{
"type": "epex-spot",
"location": "ML",
"timestamp": "2025-11-19T15:28:21.000000Z",
"price": 4,
"price_includes_tax": true
}
]
}