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.
| Field | Description |
|---|---|
| Organization Name | MobiTrack24 GPS Fleet Tracking Platform |
| Organization ID | ORG-XXXXXXXXXXXX |
| Vehicle ID | VEH-XXXXXXXX |
| Registered Email | demo@abc.com |
| API Version | v1.0 |
Base URL
https://api.mobitrack24.com/v1Endpoint — 1. Current Vehicle Location
Request URL
GET https://api.mobitrack24.com/v1/vehicles/current-locationQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| organization_id | String | Yes | Organization Identifier |
| vehicle_id | String | Yes | Unique Vehicle Identifier |
| String | Yes | Registered Email Address | |
| api_key | String | Yes | API 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=XXXXXXXXXXXXXXXXHTTP Method
GETHeaders
| Field | Description |
|---|---|
| Accept | application/json |
| Content-Type | application/json |
| Authorization | Bearer {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
| Field | Description |
|---|---|
| success | API request status |
| message | Response message |
| vehicle_id | Vehicle Unique Identifier |
| vehicle_type | Vehicle Type |
| ignition_status | ON / OFF / UNAVAILABLE |
| speed | Current Speed (km/h) |
| heading | Vehicle Direction (Degrees) |
| timestamp | UTC Date & Time (ISO 8601 Format) |
| latitude | Vehicle Latitude |
| longitude | Vehicle Longitude |
Sample Error Response
{
"success": false,
"message": "Vehicle not found."
}Status Codes
| Field | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request |
| 401 | Unauthorized |
| 404 | Vehicle Not Found |
| 500 | Internal 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.