- Get connectivity information for an EVSE
Returns a snapshot of the EVSE's connectivity metrics including signal strength, SIM data, firmware version, and connection reliability.
- Mock serverhttps://developers.ev.energy/_mock/ev.energy-api-v2/evses/{evse_id}/connectivity
- Live API for both production and sandbox requests.https://api.ev.energy/v2/evses/{evse_id}/connectivity
- Staging server for internal testing only.https://api-staging.ev.energy/v2/evses/{evse_id}/connectivity
curl -i -X GET \
'https://developers.ev.energy/_mock/ev.energy-api-v2/evses/evse01HSH04KDEWF6Z4DB2J77J74K5/connectivity?expand=latest_status_log' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'EvEnergy-Version: 2'Returns the connectivity information for this EVSE.
Indicates the version of the API that generated this response. If EvEnergy-Version was not specified in the request, this will be your OAuth application's default version.
The maximum number of requests that can be made to this endpoint per hour. Defaults to 1000 but may vary per client.
The number of requests remaining until this client's rate limit is reached.
Last known signal strength in RSSI dBm. Null for WiFi EVSEs.
Lowest signal strength in RSSI dBm over the past 7 days. Null for WiFi EVSEs.
Highest signal strength in RSSI dBm over the past 7 days. Null for WiFi EVSEs.
Connection reliability over the past 30 days, from 0 (fully offline) to 100 (fully online).
The IP address assigned to the EVSE's SIM. Null if no SIM data is available.
The ICCID of the EVSE's SIM card. Null if no SIM data is available.
The current firmware version running on the EVSE. Null if not known.
{ "signal_strength_rssi_dbm": -65, "lowest_signal_strength_rssi_dbm_7d": -89, "highest_signal_strength_rssi_dbm_7d": -57, "connection_reliability_30d": 97, "ip_address": "10.193.28.42", "iccid": "8944110000001234567", "firmware_version": "1.2.3", "latest_status_log": "https://api.ev.energy/v2/evses/evse01HSH04KDEWF6Z4DB2J77J74K5/status_logs/2024-04-17T09:39:45.984584Z/" }