GET
/
v1
/
sites
List all sites
curl --request GET \
  --url https://api.voltview.co.uk/v1/sites \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "address": "<string>",
    "postcode": "<string>",
    "region": "<string>",
    "floorArea": 123,
    "buildingType": "<string>",
    "meterCount": 123,
    "utilities": [
      "ELECTRICITY"
    ],
    "status": "ACTIVE"
  }
]

Authorizations

Authorization
string
header
required

JWT token obtained from /v1/requestToken endpoint

Response

200
application/json

Sites retrieved successfully

The response is of type object[].