GET
/v2/vehicle-location-history/{vehicle_id} Vehicle Location History
Returns historical GPS breadcrumb data. Data is available for up to the last 6 months. Query any date range within that window; results paginate via token (up to 1,000 records per page).
Token-based pagination
Tokens are tied to the original vehicle_id, start_date, and end_date. Changing any of those requires a new query. You cannot page backwards.
Path parameters
| Parameter | Type | Description | |
|---|---|---|---|
vehicle_id | UUID | required | The vehicle's unique identifier |
Query parameters
| Parameter | Type | Default | Description | |
|---|---|---|---|---|
start_date | string | required | — | Format MM-DD-YYYY |
end_date | string | required | — | Format MM-DD-YYYY |
limit | integer | optional | 100 | Records per page |
next_page_token | string | optional | — | From the previous response |
Response fields
| Field | Type | Description |
|---|---|---|
id | UUID | Unique record identifier |
vehicle_number | string | Vehicle or unit number |
lat / lng | string | Latitude / Longitude |
calc_location | string | Human-readable location |
direction | string | Heading in degrees (0–360) |
next_page_token | string | Pass back in your next request. Absent on last page. |