— Select Country —
United States (USA)
United Kingdom (UK)
Canada
Australia
United Arab Emirates (UAE)
Germany
France
Singapore
Rest of World
Step 2: Package Weight & Type
Parcel / Non-Document
Document
Step 3: Dimensions (for Volumetric Weight)
Estimated Shipping Cost
Actual Weight:0 kg
Volumetric Weight:0 kg
Chargeable Weight:0 kg
Base Freight Charge:₹0
Fuel Surcharge (Estimated 15%):₹0
GST (18%):₹0
Total Estimated Cost:₹0
*Note: This is an estimation based on standard international courier zones. Final Delhivery rates may vary based on exact pickup pincode, specific service type (Express/Economy), and current fuel surcharges.
About the Delhivery International Rate Calculator
Shipping internationally from India requires precise calculations to budget effectively. The Delhivery International Rate Calculator is designed to help e-commerce sellers, exporters, and individuals estimate the cost of sending parcels or documents abroad using Delhivery's logistics network. Unlike domestic shipping, international costs are heavily influenced by "Chargeable Weight," which considers the dimensions of your package, not just the scale weight.
How Chargeable Weight is Calculated
International courier companies, including Delhivery, use two methods to determine the weight of a shipment:
Actual (Dead) Weight: The physical weight of the package as measured on a weighing scale (in Kilograms).
Volumetric (Dimensional) Weight: A calculation based on the space the package occupies in the aircraft.
The formula for Volumetric Weight used in this calculator is:
(Length × Width × Height in cm) / 5000
The carrier will charge based on whichever is higher: the Actual Weight or the Volumetric Weight. This is known as the Chargeable Weight.
Pricing Zones and Estimations
International shipping rates vary by destination zones. Our calculator groups countries into common logistics zones to estimate pricing:
Zone 1 (USA/Canada): Typically higher volume routes but longer distances.
Zone 2 (UK/Europe): Moderate pricing structures.
Zone 3 (Middle East/UAE): Often cheaper due to proximity and high flight frequency from India.
Zone 4 (Australia/NZ): Higher rates due to distance and remote area surcharges.
Additional Surcharges
When using Delhivery or similar courier partners for international shipments, the base freight rate is rarely the final price. You must account for:
Fuel Surcharge: A variable percentage (usually 10-20%) added to the freight charge to offset fluctuating oil prices.
GST: In India, an 18% Goods and Services Tax is applicable on the total service value.
Remote Area Fee: If the delivery address is in a remote location, additional fees may apply (not calculated in this basic tool).
Tips for Reducing International Shipping Costs
To get the best rates on your Delhivery international shipments:
Optimize Packaging: Since volumetric weight can increase your costs, use the smallest box possible that still protects your item. Avoid "air shipping" empty space.
Consolidate Shipments: Sending one 5kg package is often cheaper per kg than sending five 1kg packages.
Accurate Declarations: Ensure your commercial invoice value is accurate to avoid customs delays and unexpected duties at the destination.
function calculateShipping() {
// 1. Get Inputs
var destination = document.getElementById('destination').value;
var deadWeight = parseFloat(document.getElementById('deadWeight').value);
var length = parseFloat(document.getElementById('length').value);
var width = parseFloat(document.getElementById('width').value);
var height = parseFloat(document.getElementById('height').value);
var packageType = document.getElementById('packageType').value;
// 2. Validation
if (!destination) {
alert("Please select a destination country.");
return;
}
if (isNaN(deadWeight) || deadWeight <= 0) {
alert("Please enter a valid actual weight.");
return;
}
if (isNaN(length) || length <= 0 || isNaN(width) || width <= 0 || isNaN(height) || height 2.5, 2.6 -> 3.0
var chargeableWeight = Math.ceil(rawChargeable * 2) / 2;
// 5. Rate Logic (Estimated Base Rates in INR)
// This simulates a rate card. Real APIs would be dynamic.
// Structure: Base rate for first 0.5kg, then add-on rate per 0.5kg
var baseRate = 0;
var addOnRate = 0;
switch (destination) {
case "US": // USA – Zone C (Expensive)
case "CA":
baseRate = 2200;
addOnRate = 850;
break;
case "UK": // UK/Europe – Zone B
case "DE":
case "FR":
baseRate = 1800;
addOnRate = 650;
break;
case "AE": // UAE – Zone A (Cheaper)
case "SG":
baseRate = 1200;
addOnRate = 400;
break;
case "AU": // Australia – Zone D
baseRate = 2400;
addOnRate = 950;
break;
default: // ROW
baseRate = 2800;
addOnRate = 1100;
}
// Adjust for Document vs Parcel
// Documents are usually slightly cheaper base rate
if (packageType === 'document') {
baseRate = baseRate * 0.85;
}
// Calculate Freight
var freightCost = 0;
if (chargeableWeight <= 0.5) {
freightCost = baseRate;
} else {
// First 0.5kg is base
freightCost = baseRate;
// Remaining weight
var remainingWeight = chargeableWeight – 0.5;
// How many 0.5kg chunks?
var chunks = remainingWeight / 0.5;
freightCost += (chunks * addOnRate);
}
// 6. Surcharges
var fuelSurchargePercent = 0.15; // 15% estimated
var fuelCost = freightCost * fuelSurchargePercent;
var subTotal = freightCost + fuelCost;
var gstPercent = 0.18; // 18% India GST
var gstCost = subTotal * gstPercent;
var totalCost = subTotal + gstCost;
// 7. Output Results
document.getElementById('res-dead-weight').innerText = deadWeight.toFixed(2) + " kg";
document.getElementById('res-vol-weight').innerText = volWeight.toFixed(2) + " kg";
document.getElementById('res-charge-weight').innerText = chargeableWeight.toFixed(2) + " kg";
document.getElementById('res-base-charge').innerText = "₹" + freightCost.toFixed(2);
document.getElementById('res-fuel').innerText = "₹" + fuelCost.toFixed(2);
document.getElementById('res-gst').innerText = "₹" + gstCost.toFixed(2);
document.getElementById('res-total').innerText = "₹" + totalCost.toFixed(2);
// Show result box
document.getElementById('result-box').style.display = "block";
}