- Organization Info
- Drivers
- Hours Of Service
- Vehicles
- Vehicle Locations
- Trips
- Vehicle Stats
- Maintenance
- IFTA
- Webhook
Get HOS clocks
GET
/openapi/hos/available-time/
Hours Of Service
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
date
string <date>
optional
driverIds
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/hos/available-time/?driverIds'
Responses
🟢200OK
application/json
Body
results
array[object (Result) {4}]
required
driver
string
required
codrivers
array
required
availableTime
object (AvailableTime)
required
currentStatus
enum<string>
required
offDuty
- Off DutysleepingBed
- Sleepingdriving
- DrivingonDuty
- On-dutyintermediateW/CLP
- Intermediate w/CLPintermediateW/RLP
- Intermediate w/RLPpersonalConveyance
- Personal UseyardMove
- Yard Movecertification
- Certificationlogin
- Loginlogout
- LogoutenginePowerUpW/CLP
- Engine Power-up w/CLPenginePowerUpW/RLP
- Engine Power-up w/RLPengineShutDownW/CLP
- Engine Shut-down w/CLPengineShutDownW/RLP
- Engine Shut-down w/RLPmalfunctionLogged
- ELD Malfunction LoggedmalfunctionCleared
- ELD Malfunction CleareddiagnosticEventLogged
- Data Diagnostic Event LoggeddiagnosticEventCleared
- Data Diagnostic Event ClearedAllowed values:
offDutysleepingBeddrivingonDutyintermediateW/CLPintermediateW/RLPpersonalConveyanceyardMovecertificationloginlogoutenginePowerUpW/CLPenginePowerUpW/RLPengineShutDownW/CLPengineShutDownW/RLPmalfunctionLoggedmalfunctionCleareddiagnosticEventLoggeddiagnosticEventCleared
Example
{
"results": [
{
"driver": "string",
"codrivers": [
null
],
"availableTime": {
"cycle": 0,
"shift": 0,
"drive": 0,
"break": 0
},
"currentStatus": "offDuty"
}
]
}
Modified at 2025-04-23 00:31:51