Driver Availability

Driver Availability

GET /driver/availability

Use this api to return the list of drivers available for delivery for that particular customer by getting the api key along with the parameters. It also provides additional information regarding the rating and number of trips done by the drivers.

Query Parameters

NameTypeDescription

lat*

number

Pickup latitude.

lon*

number

Pickup longitude

commercial_class*

string

Vehicle type required

eta_within_mins

number

Delivery Partner who can reach pickup within given time

postcode*

string

Postal Code of the area for drivers availability

Headers

NameTypeDescription

API_KEY

string

Enter the API Key

[
  {
    "name": "Nagesh",
    "phone_number": 9986666050,
    "vehicle_number": "KA435541",
    "current_location": {
      "lat": 12.9911346,
      "lon": 77.451
    },
    "distance_to_pickup_in_km": 1.2,
    "rating": 4.8,
    "no_of_trips": 100
  },
  {
    "name": "Kumar",
    "phone_number": 7053943332,
    "vehicle_number": "DL1LV5958",
    "current_location": {
      "lat": 12.9911346,
      "lon": 77.451
    },
    "distance_to_pickup_in_km": 1.4,
    "rating": 4.6,
    "no_of_trips": 40
  }
]

Last updated