GET
/
api
/
v2
/
tariffs
curl --request GET \
  --url https://cloud.volttime.com/api/v2/tariffs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "location": "architecto"
}'
{
  "data": [
    {
      "type": "epex-spot",
      "location": "GW",
      "timestamp": "2025-03-12T13:49:24.000000Z",
      "price": 1506,
      "price_includes_tax": false
    },
    {
      "type": "epex-spot",
      "location": "ML",
      "timestamp": "2025-03-12T13:49:24.000000Z",
      "price": 773,
      "price_includes_tax": false
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Body

application/json
location
string
required
Example:

"architecto"

Response

200 - application/json
data
object[]
Example:
[
  {
    "type": "epex-spot",
    "location": "GW",
    "timestamp": "2025-03-12T13:49:24.000000Z",
    "price": 1506,
    "price_includes_tax": false
  },
  {
    "type": "epex-spot",
    "location": "ML",
    "timestamp": "2025-03-12T13:49:24.000000Z",
    "price": 773,
    "price_includes_tax": false
  }
]