Skip to main content
GET
/
v2
/
evses
Fetches a list of EVSEs.
curl --request GET \
  --url https://api.spirii.com/v2/evses \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "uid": 123456,
      "evseId": "DK.12343*1",
      "chargeboxId": 123,
      "status": "CHARGING",
      "connectors": [
        {
          "id": 1,
          "standard": "CHADEMO",
          "format": "SOCKET",
          "powerType": "DC",
          "maxElectricPower": 22,
          "maxAmperage": 32,
          "maxVoltage": 400,
          "tariffIds": [
            "58652fe8-d840-4aa4-bb4f-3ebd944df9d6"
          ],
          "error": {
            "errorCode": "UnderVoltage",
            "info": "NO_VOLTAGE_L2_L3",
            "vendorErrorCode": "134217728"
          },
          "deletedAt": "2025-01-27 09:38:41"
        }
      ]
    }
  ],
  "nextPageCursor": "My0xMDAw",
  "previousPageCursor": "My0xMDAw"
}

Authorizations

Authorization
string
header
required

Authorization: Bearer <SPIRII_API_KEY>

Query Parameters

nextPageCursor
string

Cursor to be used to request the next page.

Example:

"My0xMDAw"

previousPageCursor
string

Cursor to be used to request the previous page.

Example:

"My0xMDAw"

limit
integer
default:25

Limit amount of returned records.

Required range: 1 <= x <= 100
uids
number[]

List of UIDs the uniquely identify the EVSEs

Example:
[123, 456]
chargeboxIds
number[]

List of IDs that uniquely identifies the charge boxes on which the EVSE is found

Example:
[123, 456]

Response

data
object[]
required

List of EVSEs

nextPageCursor
string

Cursor to be used to request the next page.

Example:

"My0xMDAw"

previousPageCursor
string

Cursor to be used to request the previous page.

Example:

"My0xMDAw"