--- title: "Zeo Route Planner API - Get Route Info | Fleet Management & Route Optimization API" author: Zeo Route Planner Team description: “Fetch complete information about a specific route—stops, sequence, driver, and timings—for full visibility.” tags: [API documentation, get route info, fleet management, route optimization, delivery management, Zeo] url: https://api.zeorouteplanner.com/get-route-info.html canonical_url: https://api.zeorouteplanner.com/get-route-info.html layout: page --- # Get Route Info API Endpoint **API Docs / Store Owner Api's / Get Route Info** This endpoint gets route information. Add the query parameters such as route_id and driver_id. **Base URL:** `https://zeorouteplanner.com/` #### HTTP Request **GET** `{{base_url}}/api/v5/routes/:route_id` #### Query Parameters | Parameter | Default | Description | |-----------|---------|-------------| | `api_key` | `""` | Api Access key | | `route_id` | `[{}]` | Route id we get from route list | | `driver_id` | `[{}]` | Driver Id of the route | ## Sample Request **Copy Code** ```bash curl --location -g --request GET '{{base_url}}/api/v5/routes/:route_id' \ --header 'Content-Type: application/json' \ --data-raw '{ "api_key" : "api_key", "driver_id": 44968 }' ``` ## Response The above command returns JSON structured like this: **Copy Code** ```json { "code": 200, "status": true, "message": "success", "data": { "route": { "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": "" } ] } } } ```