cURL
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" } ]
List the existing drivers in the system
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
The response is of type object[].
object[]
Was this page helpful?