GET
/
vehicles
/
{vehicle}
/
telemetry
curl --request GET \
  --url https://api.chargeapi.co/v1/vehicles/{vehicle}/telemetry \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "id": null,
  "object": null,
  "vehicle": null,
  "battery": {
    "capacity": null,
    "level": null,
    "range": null,
    "status": null,
    "temperature": null,
    "updated": null
  },
  "firmware_version": null,
  "location": {
    "latitude": null,
    "longitude": null,
    "updated": null
  },
  "odometer": {
    "unit": null,
    "value": null,
    "updated": null
  }
}

Path Parameters

vehicle
string
required

ID of the vehicle whose telemetry you want to fetch.

Query Parameters

expand
string[]

Specifies fields to expand (e.g., expand[]=battery).

Body

application/json · object

Response

200
application/json

Returns the latest Vehicle Telemetry object for the specified vehicle. Raises an error if no telemetry is available.