MobiTrack24 GPS Tracking API Documentation

Current Vehicle Location API — API Version v1.0. Official technical reference for GPS service integration, per the BRTA GPS Monitoring Platform specification.

Organization Information
Example values — real identifiers are issued per integration.
FieldDescription
Organization NameMobiTrack24 GPS Fleet Tracking Platform
Organization IDORG-XXXXXXXXXXXX
Vehicle IDVEH-XXXXXXXX
Registered Emaildemo@abc.com
API Versionv1.0
Base URL
https://api.mobitrack24.com/v1
Endpoint — 1. Current Vehicle Location

Request URL

GET https://api.mobitrack24.com/v1/vehicles/current-location

Query Parameters

ParameterTypeRequiredDescription
organization_idStringYesOrganization Identifier
vehicle_idStringYesUnique Vehicle Identifier
emailStringYesRegistered Email Address
api_keyStringYesAPI Authentication Key

Example Request

GET https://api.mobitrack24.com/v1/vehicles/current-location?
organization_id=ORG123456789&
vehicle_id=VEH987654321&
email=demo@abc.com&
api_key=XXXXXXXXXXXXXXXX

HTTP Method

GET

Headers

FieldDescription
Acceptapplication/json
Content-Typeapplication/json
AuthorizationBearer {Access Token} (Optional if required)

Sample Success Response

{
  "success": true,
  "message": "Current vehicle location fetched successfully.",
  "data": {
    "vehicle_id": "VEH987654321",
    "vehicle_type": "car",
    "ignition_status": "ON",
    "speed": 48,
    "heading": 180,
    "timestamp": "2026-07-07T10:35:21.000Z",
    "location": {
      "latitude": 23.810331,
      "longitude": 90.412521
    }
  }
}

Response Description

FieldDescription
successAPI request status
messageResponse message
vehicle_idVehicle Unique Identifier
vehicle_typeVehicle Type
ignition_statusON / OFF / UNAVAILABLE
speedCurrent Speed (km/h)
headingVehicle Direction (Degrees)
timestampUTC Date & Time (ISO 8601 Format)
latitudeVehicle Latitude
longitudeVehicle Longitude

Sample Error Response

{
  "success": false,
  "message": "Vehicle not found."
}

Status Codes

FieldDescription
200Success
400Bad Request
401Unauthorized
404Vehicle Not Found
500Internal Server Error
Live Playground
Test the API directly from your browser. Use your own credentials — the request goes straight to the live endpoint.
GET /v1/vehicles/current-location?organization_id=…&vehicle_id=…&email=…&api_key=…
Code Examples
curl -G "https://api.mobitrack24.com/v1/vehicles/current-location" \
  --data-urlencode "organization_id=ORG123456789" \
  --data-urlencode "vehicle_id=VEH987654321" \
  --data-urlencode "email=demo@abc.com" \
  --data-urlencode "api_key=YOUR_API_KEY" \
  -H "Accept: application/json"
Notes
  • Latitude and Longitude are provided in WGS84 coordinate format.
  • Timestamp is in UTC ISO 8601 format.
  • Speed is returned in Kilometers per Hour (km/h).
  • API response format is JSON.
  • HTTPS communication is mandatory.
  • Authentication is performed using an API Key or Bearer Token, as agreed during integration.