Drivers
List
Integrations
Auth
Fleet
- Settings
- ServiceTypes
- Regions
- GETList
- GETGet
- POSTCreate
- PUTUpdate
Tolls
Integrations
- Fleet Active Integrations
- Logs
- GETList
Drivers
- Driver-agreements
- POSTAdd
- GETList
- POSTBulk Create
Drivers
List
List the existing drivers in the system
GET
/
v2
/
drivers
curl --request GET \
--url https://api.app.fleetit.com/v2/drivers/ \
--header 'Authorization: Bearer <token>'
[
{
"id": 101,
"driver_id": "DRV-2025-001",
"first_name": "John",
"last_name": "Doe",
"address_line_1": "123 Main Street",
"address_line_2": "Apt 4B",
"city": "New York",
"state": "NY",
"zip": "10001",
"contact_number": "1234567890",
"email": "john.doe@example.com",
"driver_agreements": [
{
"agreement_id": 5001,
"agreement_number": "AGMT-0004",
"agreement_start_date": "2026-01-09T00:00:00Z",
"agreement_end_date": "2026-01-10T11:59:59Z",
"vehicle_id": 7883
}
]
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Successful response
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.app.fleetit.com/v2/drivers/ \
--header 'Authorization: Bearer <token>'
[
{
"id": 101,
"driver_id": "DRV-2025-001",
"first_name": "John",
"last_name": "Doe",
"address_line_1": "123 Main Street",
"address_line_2": "Apt 4B",
"city": "New York",
"state": "NY",
"zip": "10001",
"contact_number": "1234567890",
"email": "john.doe@example.com",
"driver_agreements": [
{
"agreement_id": 5001,
"agreement_number": "AGMT-0004",
"agreement_start_date": "2026-01-09T00:00:00Z",
"agreement_end_date": "2026-01-10T11:59:59Z",
"vehicle_id": 7883
}
]
}
]