> ## 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 Signals

### TraveledDistance

<Badge color="green">GET</Badge> `/vehicles/{vehicleId}/signals/odometer-traveleddistance`

The total distance the vehicle has traveled since its initial use

<ParamField path="body" type="object">
  <Expandable title="body properties">
    <ParamField path="unit" type="string" required={false} />

    <ParamField path="value" type="number" required={false} />

    ```json Example theme={null}
    {
      "value": 78432,
      "unit": "km"
    }
    ```
  </Expandable>
</ParamField>
