Zippyy REST APIs
  1. Couriers
Zippyy REST APIs
  • Introduction
  • Authentication API
    • Generate Token
      POST
  • Couriers
    • Check Courier Serviceability
      GET
    • Quick Quote
      POST
    • Forward Shipment (V2)
      POST
    • Forward Shipment
      POST
  • Shipments
    • Get Details of Specific Shipment
      GET
    • Generate Label
      GET
    • Generate Label Url
      GET
    • Cancel a Shipment
      PUT
    • Generate Invoice
      GET
  • Tracking
    • Get Tracking Details
      GET
    • Webhook
      POST
  • NDR
    • Action NDR
      PUT
  • Warehouse
    • Get Warehouse
      GET
    • List of Warehouse details
      GET
    • Create new Warehouse
      POST
    • Update existing warehouse properties
      PUT
  1. Couriers

Check Courier Serviceability

GET
/v1/external/carrier/serviceability
Use this API to check the availability of couriers between the pickup and delivery postal codes.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/external/carrier/serviceability?origin_pin=500032&destination_pin=400001' \
--header 'Authorization: {{auth_token}}'
Response Response Example
[
    {
        "carrier": "bluedart",
        "zone": "z_d",
        "prepaidActive": true,
        "codActive": true,
        "replacementActive": true,
        "reversePickupActive": true
    },
    {
        "carrier": "zippyybluedart",
        "zone": "z_d",
        "prepaidActive": true,
        "codActive": true,
        "replacementActive": true,
        "reversePickupActive": true
    }
]
Modified at 2025-10-14 10:13:41
Previous
Couriers
Next
Quick Quote
Built with