EZToTrack Developers

Changelog

Track changes, new features, and updates to the EZToTrack API.

June 20, 2026
Telematics: SI units, change-feeds, location & stats history, fault codes
Added Changed
  • Location historyGET /fleet/vehicles/locations/history returns a downsampled GPS breadcrumb over a time range (bucketed, 35-day cap).
  • Stats historyGET /fleet/vehicles/stats/history now returns real downsampled time-series (fuel level, engine RPM, odometer, engine hours, speed) instead of a snapshot.
  • True change-feeds/locations/feed and /stats/feed now return only records updated since your cursor (change-data-capture), ideal for incremental polling.
  • Fault codes — request types=faultCodes on /stats for live J1939 (SPN/FMI) and OBD-II (DTC) codes.
  • New stat typeengineRpm.
  • SI units — speed is now meters per second (field speedMilesPerHourspeed); timestamps are RFC 3339 UTC. Aligns the API with Samsara-style telematics for easier partner integration.
February 1, 2026
Public API Launch
Added

Initial release of the EZToTrack Public API with the following endpoints:

Vehicles

  • GET /fleet/vehicles — List all vehicles with pagination
  • GET /fleet/vehicles/{id} — Get a single vehicle by ID
  • GET /fleet/vehicles/locations — Get current vehicle locations
  • GET /fleet/vehicles/locations/feed — Streaming location feed with cursor
  • GET /fleet/vehicles/stats — Get current vehicle statistics
  • GET /fleet/vehicles/stats/feed — Streaming stats feed with cursor
  • GET /fleet/vehicles/stats/history — Historical statistics

Drivers

  • GET /fleet/drivers — List all drivers
  • GET /fleet/drivers/{id} — Get a single driver
  • POST /fleet/drivers — Create a new driver
  • PATCH /fleet/drivers/{id} — Update an existing driver

Compliance (HOS)

  • GET /fleet/hos/clocks — Get current HOS clocks for drivers
  • GET /fleet/hos/logs — Get HOS log entries
  • GET /fleet/hos/daily-logs — Get HOS daily log summaries
  • GET /fleet/hos/violations — Get HOS violations

Platform

  • API key authentication with Bearer scheme
  • Cursor-based pagination across all list endpoints
  • Rate limiting with tiered plans (Free, Standard, Professional, Enterprise)
  • API versioning via X-EZToTrack-Version header
  • IP allowlist support for API keys
January 15, 2026
Developer Portal Beta
Added

Launched the EZToTrack Developer Portal with:

  • Interactive API reference powered by Swagger UI
  • Getting started guides and authentication documentation
  • Rate limiting and pagination guides
  • This changelog