OPEN API
  1. Vehicle Stats
OPEN API
  • Organization Info
    • Get information about your organization
      GET
  • Drivers
    • List all drivers
      GET
    • Retrieve a driver
      GET
  • Hours Of Service
    • Get HOS clocks
      GET
    • Get all driver HOS daily logs
      GET
    • Get HOS logs
      GET
  • Vehicles
    • List all vehicles
      GET
    • Retrieve a vehicle
      GET
  • Vehicle Locations
    • Historical Vehicle Locations
      GET
    • Latest Vehicle Locations
      GET
  • Trips
    • Get Vehicle Trips
      GET
  • Vehicle Stats
    • Vehicle Stats snapshot
      GET
  • Maintenance
    • Get all DVIRs
      GET
  • IFTA
    • Get IFTA jurisdiction reports
      GET
  • Webhook
    • Sample Webhook request for specific trigger
      GET
    • Subscribe to specific immediately events
      POST
    • Available list of Triggers
      GET
    • Unsubscribe form events
      POST
  1. Vehicle Stats

Vehicle Stats snapshot

GET
/openapi/vehicles/stats/
Vehicle Stats
Returns the last known stats of all vehicles.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
vehicleIds
array[string]
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://127.0.0.1:8001/openapi/vehicles/stats/?vehicleIds'

Responses

🟢200OK
application/json
Body
results
array[object (VehicleStats) {39}] 
required
id
string <uuid>
read-onlyrequired
ID Vehicle State
vehicle
string 
required
Vehicle UUID
driver
string 
required
Driver UUID
is_seat_belt_fastened
boolean  | null 
optional
speed
integer  | null 
optional
Speed Vehicle
>= -2147483648<= 2147483647
engine_check_light
boolean 
read-onlyrequired
Engine check light indicator True/False
oil_level
number <double> | null 
optional
oil_pressure
integer  | null 
optional
>= -2147483648<= 2147483647
oil_temp
integer  | null 
optional
>= -2147483648<= 2147483647
coolant_level
number <double> | null 
optional
coolant_temp
integer  | null 
optional
>= -2147483648<= 2147483647
fuel_level
number <double> | null 
optional
fuel_level2
number <double> | null 
optional
engine_fuel_rate
number <double> | null 
optional
ambient_temperature
number <double> | null 
optional
odometer
number <double>
required
Total odometer in kilometers
engine_hours
number <double>
required
Engine Hours
bus
integer  | null 
optional
>= -2147483648<= 2147483647
is_odometer_computed
boolean 
optional
is_engine_hours_computed
boolean 
optional
gear
integer  | null 
optional
>= -2147483648<= 2147483647
engine_rpm
integer  | null 
optional
>= -2147483648<= 2147483647
intake_temperature
integer  | null 
optional
>= -2147483648<= 2147483647
fuel_tank_temperature
integer  | null 
optional
>= -2147483648<= 2147483647
intercooler_temperature
integer  | null 
optional
>= -2147483648<= 2147483647
turbo_oil_temperature
integer  | null 
optional
>= -2147483648<= 2147483647
transmission_oil_temperature
integer  | null 
optional
>= -2147483648<= 2147483647
engine_load
number <double> | null 
optional
def_level_percent
number <double> | null 
optional
engine_fuel_economy
number <double> | null 
optional
ambient_pressure
number <double> | null 
optional
total_engine_idle_time
number <double> | null 
optional
total_pto_time
number <double> | null 
optional
total_engine_idle_fuel
number <double> | null 
optional
total_fuel_used
number <double> | null 
optional
brake_pedal
integer  | null 
optional
>= -2147483648<= 2147483647
intake_pressure
number <double> | null 
optional
retarder_percent
number <double> | null 
optional
dtc
object  | null 
required
DTC (Diagnostic Trouble Codes)
Example
{
  "results": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "vehicle": "string",
      "driver": "string",
      "is_seat_belt_fastened": true,
      "speed": -2147483648,
      "engine_check_light": true,
      "oil_level": 0,
      "oil_pressure": -2147483648,
      "oil_temp": -2147483648,
      "coolant_level": 0,
      "coolant_temp": -2147483648,
      "fuel_level": 0,
      "fuel_level2": 0,
      "engine_fuel_rate": 0,
      "ambient_temperature": 0,
      "odometer": 0,
      "engine_hours": 0,
      "bus": -2147483648,
      "is_odometer_computed": true,
      "is_engine_hours_computed": true,
      "gear": -2147483648,
      "engine_rpm": -2147483648,
      "intake_temperature": -2147483648,
      "fuel_tank_temperature": -2147483648,
      "intercooler_temperature": -2147483648,
      "turbo_oil_temperature": -2147483648,
      "transmission_oil_temperature": -2147483648,
      "engine_load": 0,
      "def_level_percent": 0,
      "engine_fuel_economy": 0,
      "ambient_pressure": 0,
      "total_engine_idle_time": 0,
      "total_pto_time": 0,
      "total_engine_idle_fuel": 0,
      "total_fuel_used": 0,
      "brake_pedal": -2147483648,
      "intake_pressure": 0,
      "retarder_percent": 0,
      "dtc": {
        "property1": null,
        "property2": null
      }
    }
  ]
}
Modified at 2025-04-23 00:31:51
Previous
Get Vehicle Trips
Next
Get all DVIRs
Built with