Get odometer (V2)
Vehicles
Get odometer
Returns the current odometer reading and its source for a vehicle.
GET
Get odometer (V2)
Overview
Returns the current odometer value and whether it is sourced from the vehicle’s CAN bus or GPS/GNSS.Rate limit: 120 requests per 60 seconds per token.
Endpoint
GET /api/v2/vehicles/{id}/odometer
Path parameters
Legacy vehicle ID.
Response
200 OK — returns the odometer source and current reading.| Field | Type | Description |
|---|---|---|
odometerSource | string | CAN or GPS |
odometerValue | number | null | Current reading in kilometres. null if no telemetry is available yet. |
Error responses
| Status | Meaning |
|---|---|
| 401 | Missing or invalid token |
| 403 | Token does not have permission to access this vehicle |
| 404 | Vehicle not found |
Authorizations
JWT Bearer token obtained from POST /api/v2/authentication/token/api-key.
Lifetime: ~24 hours (86,399 seconds). Cache the token and reuse it. Re-authenticate 5 minutes before expiry.
Scoping: API key tokens are scoped to the company the key belongs to and may restrict access to a vehicle allowlist and/or action set (see token claims).
No refresh endpoint — re-authenticate with your API key when the token expires.
Path Parameters
Response
200 OK — Current odometer reading and source.