Skip to main content
GET
/
v3
/
chargers
/
{charger}
/
connectors
/
{connector_id}
/
latest-metervalue
Get Latest Meter Value
curl --request GET \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/connectors/{connector_id}/latest-metervalue \
  --header 'Authorization: Bearer <token>'
{
  "connectorId": 123,
  "meterValue": [
    {
      "timestamp": "<string>",
      "sampledValue": [
        {
          "value": "<string>",
          "context": "<string>",
          "format": "<string>",
          "measurand": "<string>",
          "phase": "<string>",
          "location": "<string>",
          "unit": "<string>"
        }
      ]
    }
  ]
}
Returns the latest OCPP meter value for a specific connector. This includes detailed sampled values for energy, current, voltage, and other measurands.
charger
string
required
The UUID of the charger.
connector_id
integer
required
The OCPP connector ID.

Response

connectorId
integer
The connector ID this meter value belongs to.
meterValue
object[]
An array of meter value entries.