GET
/
v2
/
drivers
/
List 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"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful response

id
integer

Unique identifier for the driver.

Example:

101

driver_id
string

External driver ID or unique code.

Example:

"DRV-2025-001"

first_name
string

First name of the driver.

Example:

"John"

last_name
string

Last name of the driver.

Example:

"Doe"

address_line_1
string

Primary address line of the driver.

Example:

"123 Main Street"

address_line_2
string

Secondary address line (optional).

Example:

"Apt 4B"

city
string

City where the driver resides.

Example:

"New York"

state
string

State where the driver resides.

Example:

"NY"

zip
string

ZIP code for the driver's address.

Example:

"10001"

contact_number
string

Primary contact number for the driver.

Example:

"1234567890"

email
string

Email address of the driver.

Example:

"john.doe@example.com"