Skip to main content
GET
/
evses
/
{id}
Retrieve a EVSE's with their current status
curl --request GET \
  --url https://api.spirii.com/evses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "DK.SPI.Z203*2",
  "location": {
    "id": 1209,
    "name": "Gentofte Hospital"
  },
  "status": "Available",
  "info": "M3[63/0]S[0:]",
  "transaction": {
    "id": 239316,
    "duration": 33003356,
    "power": 0,
    "stateOfCharge": null
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

EVSE ID to retrieve

Example:

"DK.SPI.EASEE*1"

Response

EVSE ID data

id
string
required

EVSE id

location
object
required
status
enum<string>
required

EVSE Status

Available options:
Available,
Occupied,
SuspendedEV,
Offline,
Charging,
Faulted,
Preparing,
SuspendedEVSE
info
string

additional info

transaction
object