check_serviceability
India shipping courier serviceability + live rate quote — THE tool to call FIRST. Given a pickup pincode, a delivery pincode, the parcel weight (KG) and whether it is COD, it returns every courier company (Delhivery, Bluedart, Ekart, Xpressbees, DTDC etc.) that can carry the parcel, each with its freight rate (INR), estimated delivery days and rating, plus which one is cheapest. Read-only: quotes only, creates nothing and spends nothing. Bring your own Shiprocket merchant credentials via headers x-shiprocket-email + x-shiprocket-password.
Parameters5
| pickup_postcode | string | required | Origin pincode (6-digit Indian postal code the parcel ships FROM). Must be a serviceable pickup pincode on your Shiprocket account. |
| delivery_postcode | string | required | Destination pincode (6-digit Indian postal code the parcel ships TO). |
| weight | number | required | Parcel weight in KILOGRAMS (kg). e.g. 0.5 = 500 g. Required. |
| cod | boolean | optional | true = Cash On Delivery, false = Prepaid. Default false. Serviceability differs by payment mode. |
| declared_value | number | optional | Optional order value in INR — some couriers gate by declared value / COD amount. |
Raw schema
{
"type": "object",
"properties": {
"pickup_postcode": {
"type": "string",
"description": "Origin pincode (6-digit Indian postal code the parcel ships FROM). Must be a serviceable pickup pincode on your Shiprocket account."
},
"delivery_postcode": {
"type": "string",
"description": "Destination pincode (6-digit Indian postal code the parcel ships TO)."
},
"weight": {
"type": "number",
"description": "Parcel weight in KILOGRAMS (kg). e.g. 0.5 = 500 g. Required."
},
"cod": {
"type": "boolean",
"description": "true = Cash On Delivery, false = Prepaid. Default false. Serviceability differs by payment mode."
},
"declared_value": {
"type": "number",
"description": "Optional order value in INR — some couriers gate by declared value / COD amount."
}
},
"required": [
"pickup_postcode",
"delivery_postcode",
"weight"
]
}