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
  • Schemas
    • Schemas
      • AvailableTime
      • CompanyDetail
      • CompanyResponse
      • CurrentStatusEnum
      • DVIRList
      • Driver
      • DVIRTrailerDefects
      • DriverLicense
      • DVIRVehicle
      • DriverResponse
      • DVIRVehicleDefects
      • HosDailyLogs
      • HosDailyLogsResponse
      • HosLogsResponse
      • ForVehicleLocationResponse
      • LicensePlate
      • Location
      • PaginatedDriverList
      • IFTAItem
      • PaginatedHosLogsResponseList
      • IFTAReport
      • PaginatedTripResponseList
      • PaginatedVehicleList
      • PaginatedVehicleLocationResponseList
      • OpenAPIWebhookSubscribeRequest
      • Response
      • OpenAPIWebhookUnsubscribeRequest
      • Result
      • StatusEnum
      • PaginatedDVIRListList
      • StatusDurations
      • TimezoneEnum
      • TripLocation
      • VehicleRoute
      • PaginatedIFTAReportList
      • PaginatedForVehicleLocationResponseList
      • TripResponse
      • VehicleRouteLocation
      • TripStartEnd
      • VehicleRouteStartEnd
      • Vehicle
      • VehicleSResponse
      • VehicleLocationResponse
      • VehicleStats
      • PaginatedWebhookTriggerList
      • VehicleResponse
      • WebhookTrigger
  1. Vehicle Stats

Vehicle Stats snapshot

GET
https://api.firsteld.com/openapi/vehicles/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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.firsteld.com/openapi/vehicles/stats/?vehicleIds' \
--header 'Authorization: Bearer <token>'
Response Response 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": "string",
                "property2": "string"
            }
        }
    ]
}
Modified at 2025-08-22 17:06:20
Previous
Get Vehicle Trips
Next
Get all DVIRs
Built with