Vega GPS API
REST API v1.0 • OPENAPI 3.0

Vega GPS Platform REST API Reference

Integrate real-time GPS tracking data, vehicle telemetry, geofence breaches, and report generation directly into your custom ERP (SAP, Odoo), Transportation Management Systems (TMS), or mobile applications.

Authentication & API Keys

All requests to the Vega REST API require a Bearer token or API key passed in the Authorization header:

Authorization: Bearer YOUR_API_KEY_OR_JWT_TOKEN
POST /auth/login

Authenticate user credentials and retrieve a 30-day persistent JWT token.

// Request Payload
{ "email": "user@org.com", "password": "YourPassword123!" }
GET /api/devices

Fetch all active vehicles, SIM details, ignition state, and last seen timestamps for the organization.

// Sample cURL Request
curl -X GET "https://api.vegagps.online/api/devices" \
  -H "Authorization: Bearer YOUR_TOKEN"
GET /api/positions?imei={imei}&from={startDate}&to={endDate}

Query historical location trail, speed records, course heading, and sensor telemetry values.

GET / POST /v1/integration/*

High-throughput integration endpoints designed specifically for automated B2B server-to-server data syncing.