Skip to main content
GET
/
v3
/
chargers
/
{charger}
/
connectors
/
{connector_id}
/
power-usage
Get Power Usage
curl --request GET \
  --url https://app.plugchoice.com/api/v3/chargers/{charger}/connectors/{connector_id}/power-usage \
  --header 'Authorization: Bearer <token>'
{
  "timestamp": "<string>",
  "L1": "<string>",
  "L2": "<string>",
  "L3": "<string>",
  "kW": "<string>"
}
Returns the current real-time power usage for a specific connector. Data is retrieved from live measurements.
charger
string
required
The UUID of the charger.
connector_id
integer
required
The OCPP connector ID.

Response

timestamp
string
ISO 8601 timestamp of when the measurement was taken.
L1
string
Current on phase L1 in Amperes. Displays - if not available.
L2
string
Current on phase L2 in Amperes. Displays - if not available.
L3
string
Current on phase L3 in Amperes. Displays - if not available.
kW
string
Total power consumption in kilowatts.