GPS Tracking Software Rest API

Documentation version 5.7


Introduction

  • Item Name : GPS Software
  • Item Version : v 5.7
  • Support : SQL

First of all, Thank you so much for using this GPS Software and for being my loyal customer. You are awesome!
You are entitled to get free lifetime updates to this product + exceptional support from the OEM.

This documentation is to help you everything about Rest API. Please go through the documentation carefully to understand how this application is work. Javascript, JSON and Database knowledge is required to use Rest API. You may learn basics here

Be careful before using Rest API you have to be proper skilled in programming.
No support is provided for Addtional customization.

Getting Started #back to top

Parameter Format

Parameter encoding

Parameter encoding is UTF-8 as standard. Please refer to: Cick Here

Time Format

Time format is UNIX timestamp. Please refer to: Click Here

HTTP MIME

application/json; charset=UTF-8

Response

we deliver response in JSON format Click Here

Authentication#back to top

Credentials

Get access for the API you need to request along with header parameter. the header itself contains the user credentials ( username and password)

Example

"username" : "my_username", "password" : "my_password",

Note: username & password both are case sensitive.


Live Tracking API #back to top

Note: you can post API data request for both Vehicle number or IMEI.

URL structure ( with Vehicle Number)

  • Baseurl/API/?Vnumber=value

Example

http://example.com/API/?Vnumber=Value

Response JSON Demo

{ " VehicleNo ":"DL1LY5703", " DeviceImei ":"326532658965235", "TimeRecorded":"15-09-2017 20:00", "LocationAddress":"Sahara Mall, Gurgaon, Haryana - 122001", "Latitude":"28.586789", "Longitude":"76.953216", "Speed":"0", "Ignition":"OFF" }

URL structure ( With IMEI )

  • Baseurl/API/?IMEI=value

Example

http://example.com/API/?IMEI=Value

Response JSON Demo

{ " VehicleNo ":"DL1LY5703", " DeviceImei ":"326532658965235", "TimeRecorded":"15-09-2017 20:00", "LocationAddress":"Sahara Mall, Gurgaon, Haryana - 122001", "Latitude":"28.586789", "Longitude":"76.953216", "Speed":"0", "Ignition":"OFF" }

Error Response

{ "Status": 200, "Code":100, "Message":"Vehicle No. does not exist." }


Log Data #back to top

Note: you can post API data request for both Vehicle number or IMEI.

URL structure ( with Vehicle Number)

  • Baseurl/API/?Vnumber=value&fromdate=value&todate=value

URL structure ( with Vehicle Number)

  • Baseurl/API/?IMEI=value&fromdate=value&todate=value

Example

http://example.com/API/?Vnumber=HR25HN2562&fromdate=18-Jul-2020 02:30:23 PM&todate=18-Jul-2020 02:30:23 PM

http://example.com/API/?Vnumber=3565852877985&fromdate=18-Jul-2020 02:30:23 PM&todate=18-Jul-2020 02:30:23 PM

Response JSON Demo

{ " VehicleNo ":"DL1LY5703", " DeviceImei ":"326532658965235", "TimeRecorded":"15-09-2017 20:00", "LocationAddress":"Sahara Mall, Gurgaon, Haryana - 122001", "Latitude":"28.586789", "Longitude":"76.953216", "Speed":"0", "Ignition":"OFF" }

Error Code #back to top

Error Response

{ "Status": [int], "Code": [int], "Message":[string] }

Example

{ "Status": 200, "Code":100, "Message":"Vehicle No. does not exist." }