Blue Dart-Location Finder
v 0.1
Division: DHL eCommerce

Best for:

The Location Finder provides you with information on locations serviced by Blue Dart. It also outlines the services available for each location. This service can be used by the customer to be better advised on the serviceability and reach of Blue Dart locations. This query input is based on pin code.

Get Service for Pin-code :

This method will return information about all types of services provided by Blue Dart for requested pin code.

Get Service for Product:

This method will return service availablity for requested pincode,product / subproduct.

Get Service for Pincode and Product:

This method will return service availablity for requested pincode,product / subproduct.

Region: India
Used for: Location
Overview

About Blue Dart

Blue Dart Express Ltd., South Asia's premier express air, integrated transportation & distribution company, offers secure and reliable delivery of consignments to over 55,400+ locations in India. Blue Dart is a provider of choice for its stakeholders due to its customer centric approach and aims to further strengthen this partnership. As part of Deutsche Post DHL Group's DHL eCommerce Solutions division, Blue Dart accesses the largest and most comprehensive express and logistics network worldwide, covering over 220 countries and territories, and offers an entire spectrum of distribution services including air express, freight forwarding, supply chain solutions, customs clearance etc.

The Blue Dart team drives market leadership through its motivated people, dedicated air and ground capacity, cutting-edge technology, wide range of innovative, vertical specific products and value-added services to deliver unmatched standards of service quality to its customers. Blue Dart's market leadership is further validated by its position as the nation's most innovative and awarded express logistics company for exhibiting reliability, superior brand experience and sustainability which include recognition as one of 'India's Best Companies to Work For' by The Great Place to Work® Institute, India, ranked amongst 'Best Multinational Workplaces in Asia' by The Great Place to Work® Institute, Asia, voted a 'Superbrand' and 'Reader's Digest Most Trusted Brand', listed as one of Fortune 500's 'India's Largest Corporations' and Forbes 'India's Super 50 Companies' to name a few. Blue Dart's Diversity and Inclusion initiatives have also led to it being recognized as one of India's 'Best Workplaces for Women' in 2021 and 'Best Organizations for Women' in 2022 by the Economic Times.

Blue Dart fulfils its social responsibility of climate protection (GoGreen), disaster management (GoHelp) and education (GoTeach) through its GoPrograms.

Our vision is to establish continuing excellence in delivery capabilities focused on the individual customer. In pursuit of sustainable leadership in quality services, we have evolved an infrastructure unique in the country today:

  • State-of-the-art Technology, indigenously developed, for Track and Trace, MIS, ERP, Customer Service, Space Control and Reservations.
  • Blue Dart Aviation, dedicated capacity to support our time-definite morning deliveries through night freighter flight operations.
  • A countrywide Surface network to complement our air services.
  • Warehouses at 85 locations across the country as well as bonded warehouses at the 7 major metros of Ahmedabad, Bangalore, Chennai, Delhi, Mumbai, Kolkata and Hyderabad.
  • ISO 9001:2015 countrywide certification by Lloyd's Register Quality Assurance for our entire operations, products and services.
  • E-commerce B2B and B2C initiatives including partnering with some of the prime portals in the country.
User Guide

Get Access

You must request credentials for any applications you develop.

To register your app and get your API subscription keys:

  1. Click My Apps on the portal website.
  2. Click Add Developer App.
    The "Add App" form appears.
  3. Complete the Add App form.
    You can select the APIs you want to access.
  4. When you have completed the form, click the Add App button.
    The "Approved" label will appear next to the app name when the app has been approved.
    Note: Additional verification steps may be required for some applications.

To view your API subscription keys:

  1. From the My Apps screen, click on the name of your app.
    The Details screen appears.
  2. If you have access to more than one API, click the name of the relevant API.
    Note: The APIs are listed under the "Credentials" section.
  3. Click the Show link below the asterisks that is hiding the Consumer Key.
    The Consumer Key and secret appears.

Generate Token

Every call to the API requires a JWT token is must which customer need to generate before making the actual API call.

Below are the steps to generate the token

  1. Once the App is created in the above steps the customer need to use its keys and secret to make a call to Authenticator API which will generate token.
  2. Link: Authenticator API
  3. Once the token is created customer will send the token in header along with the request payload to its API to perform the specific operation.

Environments

The addressable API base URL/URI environment is:

Environment Description
https://apigateway.bluedart.com/in/transportation/finder/v1 Prod Enviornment
Scope

Bluedart Other Services

BlueDart APIS Description
Blue Dart Authentication API Authenticator
BD-Product and Sub-Product Pickup Detail Product
BD-Tracking Of Shipment Tracking
BD-Transit Time Transit Time
BD-Cancel Pickup for Registration Cancel Pickup
BD-Register for Pickup Register Pickup
BD-Master Download Master Download
BD-Waybill Waybill
BD-Alt-Instruction Alt-Instruction
Get Service for Pin-code

How to address Get Services for Pincode

This method will return service availablity for requested pincode.

Addressing should required the request to be in below format

If you wish to address your need to provide user data and information of the delivery shipment, please follow the steps below:

  1. Provide your request data which contains all the pincode detail
  2. Provide user profile.

The API sample response below provides all necessary data:

Sample Request Data:

pincode Object
Profile user data

{

"pinCode": "400057",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID"

}

}

Additional Information

Permitted HTTP methods
  • Post method for creating a request
Example requests to the API

Simple HTTP request example:

curl --location '

https://apigateway.bluedart.com/in/transportation/finder/v1/GetServicesforPincode

' \

--header 'JWTToken: your token'\

--header 'Content-Type: application/json' \

--data '{

{

"pinCode": "400057",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID"

}

}

}'

Get Services for Pincode And Product

How to address Get Services for Pincode And Product

This method will return service availablity for requested pincode,product / subproduct.

Addressing should required the request to be in below format

If you wish to address your need to provide user data and information of the delivery shipment, please follow the steps below:

  1. Provide your request data which contains all the necessary details need for finding the product and pincode detail
  2. Provide user profile.

The API sample response below provides all necessary data:

Sample Request Data:

pincode string
ProductCode string
SubProductCode string
PackType string
Feature string
Profile user data

{

"pinCode": "400099",

"ProductCode": "A",

"SubProductCode": "P",

"PackType": "L",

"Feature": "R",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID",

"Version": "1.0"

}

}

Additional Information

Permitted HTTP methods
  • Post method for creating a request
Example requests to the API

Simple HTTP request example:

curl --location 'https://apigateway.bluedart.com/in/transportation/finder/v1/GetServicesforProduct' \

--header 'JWTToken: your token'\

--header 'Content-Type: application/json' \

--data '{

{

"pinCode": "400099",

"ProductCode": "A",

"SubProductCode": "P",

"PackType": "L",

"Feature": "R",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID",

"Version": "1.0"

}

}

}'

Get Services for Product

How to address Get Services for Product

This method will return service availablity for requested product.

Addressing should required the request to be in below format

If you wish to address your need to provide user data and information of the delivery shipment, please follow the steps below:

  1. Provide your request data which contains all the pincode detail
  2. Provide user profile.

The API sample response below provides all necessary data:

Sample Request Data:

pincode string
ProductCode string
SubProductCode string
Profile user data

{

"pinCode": "400099",

"pProductCode": "A",

"pSubProductCode": "P",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID"

}

}

Additional Information

Permitted HTTP methods
  • Post method for creating a request
Example requests to the API

Simple HTTP request example:

curl --location 'https://apigateway.bluedart.com/in/transportation/finder/v1/GetServicesforPincodeAndProduct' \

--header 'JWTToken: your token'\

--header 'Content-Type: application/json' \

--data '{

{

"pinCode": "400057",

"pProductCode": "A",

"pSubProductCode": "P",

"profile": {

"Api_type": "S",

"LicenceKey": "APIKEY",

"LoginID": "APIID"

}

}

}'

Legal Terms

Legal

Test

test

Test Info

Info

1.0.0
28.Apr.2023
  • Initial Release
1.0.1
15.Jun.2023
  • Addition of Sandbox URL