Rate Calculator
This API helps determine the cost of shipping based on various parameters such as journey type, destination, weight, and payment method.
Last updated
Was this helpful?
This API helps determine the cost of shipping based on various parameters such as journey type, destination, weight, and payment method.
Last updated
Was this helpful?
Was this helpful?
{
"zone": "Metro",
"essentialPlan": {
"eshopboxStandard": {
"estimatedDeliveryDays": 5,
"shippingBaseFreight": 0.0,
"expressSurcharge": 0.0,
"CODCollectionFees": 35.0,
"reverseShippingFees": 0.0,
"fuelSurcharge": 0.0,
"doorstepQCFees": 0.0,
"GST": 6.3,
"totalShippingCharges": 41.3
}
}
}{
"error": {
"errors": [
{
"message": "Order weight cannot be blank"
}
]
}
}
curl --location 'https://{domain}/shipping/api/v1/calculate/rate' \
--header 'Authorization: Bearer <>' \
--header 'Content-Type: application/json' \
--data '{
"journeyType": "forward",
"pickupPincode": "560034",
"dropPincode": "560034",
"orderWeight": "5",
"length": "12",
"width": "12",
"height": "33",
"paymentMethod": "Cash on delivery",
"codAmountToBeCollected": 100.0,
"doorstepQc": false
}'