FleetWorkAPI Docs

Overview

Fleetwork API — integrate fleet management, GPS tracking, job dispatch, webhooks and more into your application.

What you can do

ModuleCapabilities
User ManagementList drivers, update profiles, activate/deactivate accounts
Live TrackingReal-time GPS positions, driver status, route history
Job ManagementCreate, assign, update, and bulk-manage delivery jobs
Task ManagementCheck-in/out, process, complete, cancel tasks
Route ManagementView routes, statistics, and unassigned tasks
PlacesManage POI / address book, reverse geocoding
WebhooksSubscribe to events — real-time push notifications
API KeysProgrammatically 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

  1. Log in to Fleetwork
  2. Open Settings → API Keys
  3. 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

What's next?

On this page