--- title: "Zeo Route Planner API - Get All Driver Routes | Fleet Management & Route Optimization API" author: Zeo Route Planner Team description: “This fetches every route assigned to your drivers. It’s useful for tracking workload and monitoring daily operations.” tags: [API documentation, get all driver routes, fleet management, route optimization, route management, Zeo] url: https://api.zeorouteplanner.com/get-all-driver-routes.html canonical_url: https://api.zeorouteplanner.com/get-all-driver-routes.html layout: page --- # Get All Driver Routes API Endpoint **API Docs / Store Owner Api's / Get All Driver Routes** This endpoint gets all driver routes. Include query parameters like limit, offset, and driver_id to obtain all lists of routes. {{base_ur}}="https://zeorouteplanner.com/" #### HTTP Request **GET** `{{base_url}}/api/v5/routes` #### Query Parameters | Parameter | Default | Description | |-----------|---------|-------------| | `api_key` | `""` | Api Access key | | `limit` | `50` | Records to return | | `offset` | `0` | Next records to return | | `driver_id` | `""` | Driver id | ## Sample Request **Copy Code** ```bash curl --location -g --request GET '{{base_url}}/api/v5/routes' \ --header 'Content-Type: application/json' \ --data-raw '{ "api_key" : "api_key", "limit": 10, "offset": 10, "driver_id": "driver_id" }' ``` ## Response The above command returns JSON structured like this: **Copy Code** ```json { "code": 200, "status": true, "message": "success", "data": { "routes": [ { "id": 103110, "start_address": "new york", "end_address": "new york", "start_latitude": 40.7128, "start_longitude": 74.006, "end_latitude": 40.7128, "end_longitude": 74.006, "created_at": "2021-07-21T04:07:41.000Z", "route_name": "test", "route_stops": [ { "id": 222472903, "address": "17475 Northwest 27th Avenue, Miami Gardens, FL, USA", "latitude": 25.9330248, "longitude": -80.2445472, "notes": "GOod", "optimize_status": "normal", "stop_duration": 10, "customer_name": "", "customer_mobile_number": "", "street": "17475 NW 27th Ave, Miami Gardens, FL 33056, EE. UU.", "city": "Miami-Dade County", "state": "Florida", "country": "Estados Unidos", "postal_code": "33056", "customer_email": "", "order_number": "", "order_status": "route_created", "h_no": "", "locality": "" } ] } ], "total_routes": 1 } } ```