Indigo Cargo Rates Calculator

.cargo-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 2px solid #001b94; border-radius: 12px; background-color: #f9fbff; color: #333; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .cargo-calc-header { text-align: center; background-color: #001b94; color: white; padding: 15px; margin: -25px -25px 25px -25px; border-radius: 10px 10px 0 0; } .cargo-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .cargo-calc-grid { grid-template-columns: 1fr; } } .cargo-calc-field { margin-bottom: 15px; } .cargo-calc-field label { display: block; font-weight: 600; margin-bottom: 5px; color: #001b94; } .cargo-calc-field input, .cargo-calc-field select { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; } .cargo-calc-btn { background-color: #001b94; color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 5px; cursor: pointer; width: 100%; transition: background 0.3s; } .cargo-calc-btn:hover { background-color: #e6b400; color: #001b94; } .cargo-calc-result { margin-top: 25px; padding: 20px; background-color: #fff; border-left: 5px solid #001b94; display: none; } .result-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .result-total { font-size: 20px; font-weight: bold; color: #001b94; margin-top: 10px; } .cargo-article { line-height: 1.6; color: #444; margin-top: 40px; } .cargo-article h2 { color: #001b94; border-bottom: 2px solid #e6b400; padding-bottom: 5px; } .cargo-article h3 { color: #001b94; }

IndiGo Cargo Rates Estimator

General Cargo (Dry) Perishable (Food/Medicine) Dangerous Goods (DG) Valuables (Gold/Electronics)
Dimensions (for Volumetric Weight)
Volumetric Weight: 0 kg
Chargeable Weight: 0 kg
Estimated Base Rate: ₹ 0
Fuel & Handling Surcharges (15%): ₹ 0
Total Estimated Cost: ₹ 0

*Note: This is an estimate based on industry averages and standard IndiGo cargo brackets. Actual rates may vary by flight, demand, and specific GST applications.

Understanding IndiGo Cargo Rates

IndiGo, India's largest carrier, offers "6E Cargo" services across its massive domestic and international network. When shipping items via IndiGo Cargo, the rate isn't just determined by the weight on the scale. Air cargo rates are calculated using the Chargeable Weight principle.

How the Rate is Calculated

The final cost for your IndiGo Cargo shipment depends on several variables:

  • Actual Weight: The physical weight of the box in kilograms.
  • Volumetric (Dimensional) Weight: Since aircraft space is limited, light but bulky items (like a large box of cotton) occupy more space. The formula used is (Length × Width × Height) / 5000.
  • Chargeable Weight: The carrier charges you based on whichever is higher between the actual weight and the volumetric weight.

IndiGo Cargo Rate Classes

Not all goods are charged the same. IndiGo categorizes cargo into specific types:

  1. General Cargo: Standard dry goods, garments, and non-hazardous equipment.
  2. Perishables: Fruits, vegetables, and seafood that require faster handling and specific storage.
  3. Dangerous Goods: Chemicals, batteries, or aerosols that require special safety certifications.
  4. Valuables: High-value electronics, jewelry, or currency requiring high security.

Calculation Example

If you are shipping a box weighing 10kg with dimensions 50cm x 50cm x 50cm:

  • Actual Weight: 10 kg
  • Volumetric Weight: (50x50x50) / 5000 = 25 kg
  • Chargeable Weight: 25 kg (since 25 is greater than 10)

The rate would then be applied to the 25kg figure rather than the 10kg figure.

Factors Influencing Final Costs

Aside from the base rate per kilogram, you should expect additional fees such as Fuel Surcharges (FSC), Terminal Handling Charges (THC), and Air Waybill (AWB) fees. For domestic shipments in India, GST is typically applied at 18%.

function calculateCargoRate() { var actualWeight = parseFloat(document.getElementById('actualWeight').value); var length = parseFloat(document.getElementById('length').value); var width = parseFloat(document.getElementById('width').value); var height = parseFloat(document.getElementById('height').value); var baseRatePerKg = parseFloat(document.getElementById('cargoType').value); // Validation if (isNaN(actualWeight) || actualWeight <= 0) { alert("Please enter a valid actual weight."); return; } if (isNaN(length) || isNaN(width) || isNaN(height)) { length = 0; width = 0; height = 0; } // Logic: Volumetric Weight = (L*W*H)/5000 var volumetricWeight = (length * width * height) / 5000; // Logic: Chargeable Weight is the higher of the two var chargeableWeight = Math.max(actualWeight, volumetricWeight); // Logic: Base Cost var baseCost = chargeableWeight * baseRatePerKg; // Logic: Surcharge simulation (Fuel and handling usually adds ~15-20%) var surcharge = baseCost * 0.15; // Logic: Total var totalCost = baseCost + surcharge; // Display Results document.getElementById('resVolumetric').innerText = volumetricWeight.toFixed(2) + " kg"; document.getElementById('resChargeable').innerText = chargeableWeight.toFixed(2) + " kg"; document.getElementById('resBase').innerText = "₹ " + baseCost.toLocaleString('en-IN', {maximumFractionDigits: 2}); document.getElementById('resSurcharge').innerText = "₹ " + surcharge.toLocaleString('en-IN', {maximumFractionDigits: 2}); document.getElementById('resTotal').innerText = "₹ " + totalCost.toLocaleString('en-IN', {maximumFractionDigits: 2}); document.getElementById('cargoResult').style.display = "block"; }

Leave a Comment