> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chargeapi.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a Vehicle Telemetry

Retrieves the latest telemetry for a vehicle. Telemetry includes battery state of charge, estimated range, location, odometer, and other runtime data.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.chargeapi.co/v1/vehicles/veh_88UEAZxzTmfGqHGeic7Te19aCW3373UC/telemetry \
    -H "Authorization: Bearer ch_sk_test_..."
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "id": "vtel_OCmE5xXJWTwAQZVBiqAHJWOB86JEA6yB",
      "object": "vehicle_telemetry",
      "battery": {
          "capacity": 82000,
          "level": 78,
          "range": 320000,
          "status": "charging",
          "temperature": 24.5,
          "updated": "2026-04-01T01:35:36.614Z"
      },
      "firmware_version": "v1.2.3",
      "location": {
          "latitude": 48.8698,
          "longitude": 2.3319,
          "updated": "2026-04-01T01:35:49.395Z"
      },
      "odometer": {
          "unit": "KMS",
          "updated": "2026-04-01T01:35:44.285Z",
          "value": 32540
      },
      "vehicle": "veh_88UEAZxzTmfGqHGeic7Te19aCW3373UC"
  }
  ```
</ResponseExample>

## Parameters

No parameters.

## Returns

Returns the vehicle telemetry.
