Blowhorn API Documentation
  • Welcome
  • API REFERENCE
    • Authentication
      • Customer Authentication
      • Partner Authentication
    • Orders
      • Shipment Orders
      • Marketplace Orders
      • Cancel Order
      • Order Event
      • Order Event History
      • ETA
      • Delivery Partner Details
      • Order Documents
    • Drivers
      • Available Vehicle Class
      • Driver Availability
      • Payday Loan Eligibility
      • Driver Details
      • Driver Balance
      • Driver Deductions
    • Locations
      • Serviceability
      • Hubs
      • Coverage
      • Location Type
      • Storage Type
      • Location Zone
      • Location
    • WMS Inbound
      • Clients
      • Suppliers
      • Purchase Orders
      • Advance Shipping Notice
      • Goods Receipt Note
    • WMS Outbound
      • Shipping Label
      • Shipping Manifest
    • Inventory
      • Product Group
      • Tracking Level
      • Pack Config
      • SKU
      • Inventory
      • Inventory Transaction
    • Webhooks
      • HMAC Authentication
      • Order Status
      • Trip Status
      • Inventory Status
  • Help
    • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. API REFERENCE
  2. Drivers

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

Name
Type
Description

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

Name
Type
Description

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
  }
]
"No delivery partners currently available"
"Unauthorized, pass correct api_key in request header"
{
  "status": "string",
  "message": "string"
}
PreviousAvailable Vehicle ClassNextPayday Loan Eligibility

Last updated 2 years ago

Was this helpful?