Authentication
All API requests require an API key passed via theX-API-Key header.
Device identifiers
Always usehardware_id when querying or filtering devices.
1. Check the API is running
The health endpoint requires no authentication:2. List your devices
Fetch the devices your API key has access to:Results are automatically scoped to devices within your access. Admin users see all devices.
attributes object contains the device’s latest telemetry state — GPS coordinates, battery, lock status, and other data are all nested here.
3. Filter devices
Fetch specific devices by passinghardware_ids:
4. Subscribe to realtime updates
Connect via WebSocket and subscribe to devices by hardware ID:5. Receive device data
Eachdevice_data message contains only the fields present in that particular update, not the full device state.
A device may send only GPS fields in one update and only battery data in the next. Always check for the presence of fields before using them.
What’s next
Devices
Browse and query your IoT device fleet.
Telemetry
Query GPS and battery history for any device.
Trips
Compute trips and stops from GPS telemetry.
WebSocket
Full WebSocket reference for realtime subscriptions.