DHL Blue Dart Finders Virtual Sandbox

Location and serviceability lookup for Blue Dart logistics services.

The Location Finder provides information on locations serviced by Blue Dart, including service availability based on pin codes and product types. This API helps developers integrate logistics reach and serviceability checks into their shipping workflows.

Use this hosted sandbox to simulate DHL Blue Dart Finders APIs without authentication, API keys, or extra dependencies. Point your code or SDK to the Beeceptor base URL, preferably through an environment variable or feature flag, and switch back to the production API when ready. This keeps your integration code consistent across local development, QA, demos, and production.

Use cases:

Use this sandbox to validate pin code serviceability lookups, map product-specific delivery capabilities, handle invalid location requests, and verify response payloads for logistics reachability before integrating with Blue Dart production services.

DHL Blue Dart Finders virtual sandbox is up and running!

Use this sandbox URL as the API base in your code to simulate DHL Blue Dart Finders responses instantly.

https://dhl-finders.mock.beeceptor.com



Get Services for Pincode

{
  "pinCode": "400057",
  "profile": {
    "Api_type": "S",
    "LicenceKey": "APIKEY",
    "LoginID": "APIID"
  }
}
{
  "GetServicesforPincodeResult": {
    "AirValueLimit": 0,
    "AirValueLimiteTailPrePaid": 0,
    "ApexCODIntraStateValLimit": 0,
    "ApexPrepaidIntraStateValLimit": 0,
    "DPDutsValueLimit": 0,
    "ErrorMessage": "InvalidPinCode",
    "GroundValueLimit": 0,
    "GroundValueLimiteTailPrePaid": 0,
    "IsError": true,
    "PinCode": "400057"
  }
}

Get Services for Product

{
  "pinCode": "400099",
  "pProductCode": "A",
  "pSubProductCode": "P",
  "profile": {
    "Api_type": "S",
    "LicenceKey": "APIKEY",
    "LoginID": "APIID"
  }
}
{
  "GetServicesforProductResult": {
    "AreaCode": "BOM",
    "BlueDartHolidays": [
      {
        "Description": "SUNDAY",
        "HolidayDate": "/Date(1679164200000+0530)/"
      },
      {
        "Description": "SUNDAY",
        "HolidayDate": "/Date(1679769000000+0530)/"
      }
    ],
    "ErrorMessage": "Valid",
    "IsError": false,
    "PinCode": "400099",
    "PinDescription": "SAHAR",
    "Product": "A",
    "Service": "O/B&I/B ",
    "ServiceCenterCode": "ADR",
    "ServiceName": "ApexPrepaid",
    "SubProduct": "P"
  }
}

Get Services for Pincode And Product

{
  "pinCode": "400099",
  "ProductCode": "A",
  "SubProductCode": "P",
  "PackType": "L",
  "Feature": "R",
  "profile": {
    "Api_type": "S",
    "LicenceKey": "APIKEY",
    "LoginID": "APIID"
  }
}
{
  "GetServicesforPincodeAndProductResult": {
    "DeliveryAreaCode": "BOM",
    "DeliveryService": "Yes",
    "DeliveryServiceCenterCode": "AEC",
    "ErrorMessage": "Valid",
    "Feature": "R",
    "IsError": false,
    "PackType": "L",
    "PickupAreaCode": "BOM",
    "PickupService": "Yes",
    "PickupServiceCenterCode": "AEC",
    "PinCode": "400099",
    "PinDescription": "SAHAR",
    "PincodeAreaCode": "BOM",
    "PincodeServiceCenterCode": "ADR",
    "Product": "A",
    "ServiceName": "DartPlusPrepaid",
    "SubProduct": "P"
  }
}