- Organization Info
- Drivers
- Hours Of Service
- Vehicles
- Vehicle Locations
- Trips
- Vehicle Stats
- Maintenance
- IFTA
- Webhook
Retrieve a vehicle
GET
https://api.firsteld.com/openapi/vehicles/{id}/
Vehicles
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 'https://api.firsteld.com/openapi/vehicles//'
Responses
🟢200OK
application/json
Body
id
string <uuid>
read-onlyrequired
status
string
read-onlyrequired
vin
string
required
<= 17 characters
name
string
required
make
string | null
optional
<= 50 characters
model
string | null
optional
<= 100 characters
year
string
required
licensePlate
object
required
state
string
required
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"
}
}
Modified at 2025-02-11 21:39:00