OPEN API
  1. Vehicles
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. Vehicles

Retrieve a vehicle

GET
http://127.0.0.1:8001/openapi/vehicles/{id}/
Vehicles
Get information about a specific vehicle.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
id
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//'

Responses

🟢200OK
application/json
Body
id
string <uuid>
read-onlyrequired
status
string 
read-onlyrequired
Status of the vehicle
vin
string 
required
<= 17 characters
name
string 
required
Unit number of the vehicle
make
string  | null 
optional
<= 50 characters
model
string  | null 
optional
<= 100 characters
year
string 
required
Year of the vehicle
licensePlate
object 
required
License plate of the vehicle
state
string 
required
State
number
string 
required
Example
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "status": "string",
  "vin": "string",
  "name": "string",
  "make": "string",
  "model": "string",
  "year": "string",
  "licensePlate": {
    "state": "string",
    "number": "string"
  }
}
Previous
List all vehicles
Next
Historical Vehicle Locations
Built with