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

# Odometer

> Returns the vehicle’s last known odometer reading.

<Warning>
  The Vehicles API v2.0 will be deprecated on **December 1, 2026**. The latest version, [v3](/docs/api-reference/intro), was introduced on August 26, 2025. We recommend migrating as soon as possible to ensure continued support and access to new features.
</Warning>

## Permission

`read_odometer`

## Request

**Path**

<Snippet file="api-reference/path-vehicle-id.mdx" />

<RequestExample>
  <Snippet file="api-reference/core-sdk-methods/get-odometer.mdx" />
</RequestExample>

## Response

<ResponseField name="distance" type="number" default="kilometers">
  The current odometer of the vehicle.
</ResponseField>

<ResponseExample>
  ```json Example Response  theme={null}
  {
    "distance": 104.32
  }
  ```
</ResponseExample>
