Open VTS vehicle tracking software logo
TutorialsPricingFree Tools

Industries

Logistics & TransportationEnd-to-end fleet visibility and route optimization
Construction & InfrastructureHeavy equipment monitoring and geofencing
Oil, Gas & Energy OperationsRemote asset tracking across pipeline networks
Mining & Heavy IndustryFleet management for mining operations

 

Agriculture & Agri-Fleet OperationsSmart field and farm vehicle management
Waste Management & Sanitation ServicesRoute and collection fleet optimization
School & Institutional TransportationStudent safety and bus fleet tracking
Security Patrol & Response FleetsReal-time patrol monitoring and dispatch

 

Electric Vehicle Fleet OperationsEV fleet range and charge management
Banking & Cash-in-Transit OperationsSecure transit and armored vehicle tracking
Insurance Telematics & Field InvestigationDriver behavior and claims fleet tracking
Field Service & Mobile WorkforceTechnician dispatch and workforce routing

Learn

BlogGuides & E-booksCustomer Stories

Product

Product TourSupported Devices

Help

DocumentationContent Library

Developers

API Reference

Contact

Contact Us

Company

Our StoryCareers

Ecosystem

Partner ProgramAffiliate Program
Download Now
PricingFree Tools
Logistics & TransportationConstruction & InfrastructureOil, Gas & EnergyMining & Heavy IndustryAgriculture & Agri-FleetWaste Management & SanitationSchool & Institutional TransportSecurity Patrol & ResponseElectric Vehicle FleetsBanking & Cash-in-TransitInsurance & TelematicsField Service & Mobile Workforce

Learn

BlogGuides & E-booksCustomer Stories

Product

Product TourSupported Devices

Help

DocumentationContent Library

Developers

API Reference

Contact

Contact Us

Company

Our StoryCareers

Ecosystem

Partner ProgramAffiliate Program
Download Now
All Docs

Getting Started

Installation

  • System Requirements
  • Install on Linux
  • Install with Docker

Quick Start

  • First Login & Setup

Platform Guides

Tracking

  • Real-Time Tracking
  • Route History & Playback

Geofencing

  • Geofence Setup

Alerts & Notifications

  • Alert Configuration

Configuration

Server

  • Server Configuration

Database

  • Database Setup

Integrations

Devices

  • Device Protocols

REST API

  • REST API Overview
  1. Home
  2. Resources
  3. Documentation
  4. Integrations
  5. REST API Overview

REST API Overview

Authenticate, query positions, manage devices, and build integrations using the Open VTS API.

Last updated March 15, 2026

Open VTS exposes a comprehensive REST API for programmatic access to all platform features. Use it to build custom dashboards, mobile apps, or integrate with third-party systems.

Authentication#

The API uses session-based authentication. Obtain a session cookie by sending credentials to the session endpoint:

terminal
curl -X POST 'http://your-server:8082/api/session' \
  -H 'Content-Type: application/x-www-form-urlencoded' \
  -d 'email=admin&password=admin' \
  -c cookies.txt

Core Endpoints#

MethodEndpointDescription
GET/api/devicesList all devices
POST/api/devicesCreate a new device
GET/api/positionsGet latest positions
GET/api/positions?deviceId={id}&from={iso}&to={iso}Get position history
GET/api/geofencesList all geofences
POST/api/geofencesCreate a geofence
GET/api/reports/route?deviceId={id}&from={iso}&to={iso}Generate route report
GET/api/serverGet server information

Example: Get Device Positions#

terminal
# Fetch latest positions for all devices
curl -s 'http://your-server:8082/api/positions' \
  -b cookies.txt | jq .

# Response (abbreviated)
[
  {
    "id": 1234,
    "deviceId": 1,
    "latitude": 28.6139,
    "longitude": 77.2090,
    "speed": 45.2,
    "course": 180,
    "fixTime": "2026-03-15T10:30:00.000+0000"
  }
]

Webhooks#

Open VTS can forward events (position updates, alerts, status changes) to an external URL via HTTP POST. Configure webhooks in Settings → Server → Forward.

Info
For full endpoint documentation including request/response schemas, visit the API Reference.
PreviousDevice Protocols

On this page

  • Authentication
  • Core Endpoints
  • Example: Get Device Positions
  • Webhooks
Self-HostedFull Data Control
10,000+Vehicles Tracked
50+Countries
99.9%Uptime SLA
Open VTS — Vehicle Tracking Software

Vehicle tracking software built for scale. Own your data, control your fleet, and track without limits with our GPS fleet management platform.

Product

  • Vehicle Tracking Software
  • Vehicle Tracking Application
  • Video Telematics
  • Self-Hosted vs SaaS
  • Free Tools
  • Pricing

Industries

  • Logistics & Transportation
  • Construction & Infrastructure
  • Oil, Gas & Energy
  • Agriculture & Agri-Fleet
  • Mining & Heavy Industry
  • School Transportation
  • Electric Vehicle Fleets

Resources

  • Blog
  • Guides & E-books
  • Documentation
  • API Reference
  • Tutorials
  • Help Center
  • Supported Devices

Company

  • Our Story
  • Careers
  • Contact Us
  • Partner Program
  • Affiliate Program
  • Customer Stories
  • Content Library

© 2026 Open VTS. All rights reserved.

Privacy PolicyRefund PolicyTerms of UseSecuritySitemap