Overview
Fleetwork API — integrate fleet management, GPS tracking, job dispatch, webhooks and more into your application.
What you can do
| Module | Capabilities |
|---|---|
| User Management | List drivers, update profiles, activate/deactivate accounts |
| Live Tracking | Real-time GPS positions, driver status, route history |
| Job Management | Create, assign, update, and bulk-manage delivery jobs |
| Task Management | Check-in/out, process, complete, cancel tasks |
| Route Management | View routes, statistics, and unassigned tasks |
| Places | Manage POI / address book, reverse geocoding |
| Webhooks | Subscribe to events — real-time push notifications |
| API Keys | Programmatically manage keys, usage stats |
Base URL
https://live.fleetwork.vn/api/v1/All endpoints follow the pattern:
https://live.fleetwork.vn/api/v1/workspace/{resource}Quick Start
1) Get your API Key
- Log in to Fleetwork
- Open Settings → API Keys
- Reveal a key and copy the full value
Keep your API key secure. Never commit it to source control or expose it in client-side code.
2) Make your first request
curl -X GET \
"https://live.fleetwork.vn/api/v1/workspace/jobs?page=1&size=10" \
-H "API-KEY: your-api-key-here"3) Explore common use cases
- Job Management: create/assign/update jobs
- Task Operations: check-in, process, complete, cancel
- Places: search and geocoding
- Reports: query and export operational data