curl --request POST \
--url https://api.telemax.com.au/api/GetNearest \
--header 'Authorization: <authorization>'[
{
"vehicle": {
"isEngineStarted": true,
"engineTime": "PT3H45M",
"isEngineLocked": false,
"engineCoolantTemp": 92.5,
"engineRpm": 2500,
"odometer": 12456.7,
"odometerSource": "GPS",
"externalBatteryVoltage": 12.8,
"fuelLevel": 78,
"isCharging": false,
"timeToCharge": "PT1H20M",
"chargerPower": 3400,
"tirePressures": [
35.2,
35.4,
34.9,
35
],
"isDoorsLocked": true,
"route": {
"location": {
"x": -74.006,
"y": 40.7128
},
"direction": 90,
"speed": 65.5
},
"gpsInfo": {
"isInWorkingMode": true,
"satellitesCount": 8
},
"accelerometer": {
"x": 0.01,
"y": -0.03,
"z": 0.98
},
"gyroscope": {
"x": 2,
"y": -1,
"z": 0
},
"solarPanel": {
"voltage": 5.5,
"isCharging": true
},
"tracker": {
"networkSignalStrength": 80,
"internalBatteryVoltage": 3.7
}
},
"distance": 10500
}
]Get vehicles within a specified radius, based on a point specified.
curl --request POST \
--url https://api.telemax.com.au/api/GetNearest \
--header 'Authorization: <authorization>'[
{
"vehicle": {
"isEngineStarted": true,
"engineTime": "PT3H45M",
"isEngineLocked": false,
"engineCoolantTemp": 92.5,
"engineRpm": 2500,
"odometer": 12456.7,
"odometerSource": "GPS",
"externalBatteryVoltage": 12.8,
"fuelLevel": 78,
"isCharging": false,
"timeToCharge": "PT1H20M",
"chargerPower": 3400,
"tirePressures": [
35.2,
35.4,
34.9,
35
],
"isDoorsLocked": true,
"route": {
"location": {
"x": -74.006,
"y": 40.7128
},
"direction": 90,
"speed": 65.5
},
"gpsInfo": {
"isInWorkingMode": true,
"satellitesCount": 8
},
"accelerometer": {
"x": 0.01,
"y": -0.03,
"z": 0.98
},
"gyroscope": {
"x": 2,
"y": -1,
"z": 0
},
"solarPanel": {
"voltage": 5.5,
"isCharging": true
},
"tracker": {
"networkSignalStrength": 80,
"internalBatteryVoltage": 3.7
}
},
"distance": 10500
}
]Standard and must keep as it is.
Bearer your_token
Latitude
Longitude
Company ID.
Number of vehicles to get.
Radius from point.
Successful response with array of vehicle records and distances
Vehicle data record containing engine, telemetry, and location info
Show child attributes
Indicates whether the engine is started
true
Total engine run time (to be deprecated)
"PT3H45M"
Indicates whether the engine is locked
false
Engine coolant temperature in Celsius
92.5
Engine revolutions per minute
2500
Odometer reading in kilometers
12456.7
Source of the odometer reading
"GPS"
External battery voltage in volts
12.8
Fuel level in percentage
78
Whether the vehicle is currently charging
false
Estimated time to full charge
"PT1H20M"
Charging power in watts
3400
Tire pressures (FL, FR, RL, RR) in psi
Indicates whether doors are locked
true
Route-related data
Show child attributes
Direction in degrees from north (0–360)
90
Speed in km/h
65.5
Distance traveled in meters
10500
Was this page helpful?