Skip to main content
GET
/
v3
/
meters
/
chargee
/
{chargee}
Get Chargee Meter
curl --request GET \
  --url https://app.plugchoice.com/api/v3/meters/chargee/{chargee} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "id": 123,
  "type": "<string>",
  "latest_data": {
    "l1": 123,
    "l2": 123,
    "l3": 123,
    "updated_at": "<string>"
  },
  "power": 123,
  "created_at": "<string>",
  "updated_at": "<string>"
}
Finds a meter by Chargee ID or serial number and returns its details along with the latest power data. This endpoint is rate limited to 5 requests per minute.
chargee
string
required
The Chargee ID or serial number of the meter.

Response

uuid
string
The unique UUID of the meter.
id
integer
The numeric ID of the meter.
type
string
The type of the meter.
latest_data
object
The latest power readings from the meter.
power
number
The current power reading of the meter. May be a string with an error message if unavailable.
created_at
string
ISO 8601 timestamp of when the meter was created.
updated_at
string
ISO 8601 timestamp of when the meter was last updated.