OPEN API
  1. Hours Of Service
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. Hours Of Service

Get all driver HOS daily logs

GET
http://api.firsteld.com/openapi/hos/daily-logs/
Hours Of Service
Get summarized daily Hours of Service charts for the specified drivers.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://api.firsteld.com/openapi/hos/daily-logs/?driverIds'
Response Response Example
{
    "results": [
        {
            "driver": "string",
            "date": "2019-08-24",
            "statusDurations": {
                "onDuty": 0,
                "offDuty": 0,
                "driving": 0,
                "waiting": 0,
                "sleepingBed": 0,
                "personalConveyance": 0,
                "yardMove": 0
            }
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
startDate
string <date>
optional
2023-05-22
endDate
string <date>
optional
2023-05-22
driverIds
array[string]
required

Responses

🟢200OK
application/json
Body
results
array[object (HosDailyLogs) {3}] 
required
driver
string 
required
date
string <date>
required
statusDurations
object (StatusDurations) 
required
Modified at 2025-04-23 00:31:51
Previous
Get HOS clocks
Next
Get HOS logs
Built with