GET
/
v2.0
/
vehicles
/
{id}
/
odometer
curl "https://api.smartcar.com/v2.0/vehicles/{id}/odometer" \
-H "Authorization: Bearer {token}" \
-X "GET"
{
  "distance": 104.32
}
The Vehicles API v2.0 will be deprecated by Q3 of 2026. We recommend migrating to the latest version as soon as possible to ensure continued support and access to new features.

Permission

read_odometer

Request

Path
id
string
required
The vehicle ID of the vehicle you are making a request to.
curl "https://api.smartcar.com/v2.0/vehicles/{id}/odometer" \
-H "Authorization: Bearer {token}" \
-X "GET"

Response

distance
number
default:"kilometers"
The current odometer of the vehicle.
{
  "distance": 104.32
}