Getting Started
The iotee Fleet Public API gives you read-only access to your fleet's vehicles, drivers, trips, live location, and statistics — the same data that powers the iotee Fleet dashboard, available for your own integrations.
Base URL
https://api.iotee.app/v1/public1. Get an API key
API keys are issued by your account administrator from the iotee Fleet dashboard (Settings → API Keys). Each key belongs to a package tier that determines your monthly call quota and per-minute rate limit — see Rate Limits & Packages.
2. Make your first request
curl https://api.iotee.app/v1/public/vehicles \
-H "X-API-Key: iot_live_xxxxxxxxxxxxxxxx"Every response uses the same envelope:
{
"success": true,
"data": [ ... ],
"total": 42,
"current_page": 1,
"last_page": 3
}3. Explore the API
The full API Reference lists every endpoint with request/response schemas and a live try-it console, or download the Postman collection to import all endpoints straight into Postman.
What's available
| Resource | Endpoints |
|---|---|
| Vehicles | /vehicles, /vehicles/:uuid, /vehicles/:uuid/locations |
| Drivers | /drivers, /drivers/:uuid |
| Trips | /trips, /trips/:uuid, /trips/:uuid/route |
| Live location | /live/vehicles, /live/vehicles/:uuid |
| Stats | /stats/fleet, /stats/vehicles/:uuid |
| Geofences | /geofences |
All endpoints are read-only (GET) and scoped to your own fleet — you will never see another company's data.