Within New Zealand
Australia
UK & Europe
USA & Canada
Rest of the World
Economy / Standard
Courier (Tracked)
Courier Signature / Express
Small (Satchel / Envelope)
Medium (Shoe Box Size)
Large (Small Appliance Size)
Extra Large (Maximum Allowable)
Estimated Shipping Cost
$0.00
function calculateNZRate() {
var destination = document.getElementById("destination").value;
var service = document.getElementById("service").value;
var weight = parseFloat(document.getElementById("weight").value);
var size = document.getElementById("sizeCategory").value;
var basePrice = 0;
var weightSurcharge = 0;
var serviceMultiplier = 1.0;
if (isNaN(weight) || weight 2) weightSurcharge = (weight – 2) * 4.50;
if (service === "courier") basePrice += 3.50;
if (service === "express") basePrice += 6.50;
}
// Australia Logic
else if (destination === "australia") {
basePrice = 18.00;
weightSurcharge = weight * 12.50;
if (service === "courier") serviceMultiplier = 1.4;
if (service === "express") serviceMultiplier = 1.8;
}
// UK / Europe Logic
else if (destination === "uk-europe") {
basePrice = 35.00;
weightSurcharge = weight * 28.00;
if (service === "courier") serviceMultiplier = 1.35;
if (service === "express") serviceMultiplier = 1.7;
}
// USA / Canada Logic
else if (destination === "usa-canada") {
basePrice = 32.00;
weightSurcharge = weight * 25.00;
if (service === "courier") serviceMultiplier = 1.4;
if (service === "express") serviceMultiplier = 1.75;
}
// Rest of World
else {
basePrice = 45.00;
weightSurcharge = weight * 35.00;
if (service === "courier") serviceMultiplier = 1.3;
if (service === "express") serviceMultiplier = 1.6;
}
var totalPrice = (basePrice + weightSurcharge) * serviceMultiplier;
// Cap for very heavy items simulating courier cutoffs
if (weight > 30 && destination !== "domestic") {
document.getElementById("shipping-price").innerText = "Contact NZ Post";
document.getElementById("details").innerText = "Items over 30kg require specialized freight quotes for international shipping.";
} else {
document.getElementById("shipping-price").innerText = "$" + totalPrice.toFixed(2) + " NZD";
document.getElementById("details").innerText = "Estimation includes base rate for " + size + " size and " + weight + "kg weight via " + service + " service.";
}
document.getElementById("result-area").style.display = "block";
}
Understanding NZ Post Shipping Rates
Shipping items within New Zealand or across the globe requires a clear understanding of how NZ Post calculates its postage rates. Whether you are a Trademe seller or sending a gift to family in the UK, several factors influence the final cost at the counter.
Key Factors Influencing Your Postage Cost
Destination: Domestic rates are significantly lower, while international zones are divided into Australia, South Pacific, Asia, North America, and the Rest of the World.
Weight and Dimensions: NZ Post uses both physical weight and volumetric weight. Our calculator focuses on physical weight, but remember that large, light items may be charged based on the space they occupy.
Service Level:
Economy: The most budget-friendly option, usually untracked for international letters.
Courier: Provides tracking and faster delivery times.
Courier Signature: Adds a layer of security requiring a signature upon delivery.
Domestic Shipping Examples
Item Type
Approx. Weight
Est. Domestic Cost
Document/Small Satchel
Up to 0.5kg
$7.50 – $11.00
Medium Box (Shoes)
1.5kg
$12.40 – $16.00
Large Parcel
4.5kg
$22.00 – $30.00
Tips for Reducing Shipping Costs
To get the best value when using NZ Post, consider using prepaid satchels for items under 3kg. For international shipping, always check if your item fits the "Small Parcel" dimensions (under 2kg and length/width/depth combined under 900mm) to qualify for lower Economy rates. Always declare the correct value for customs to avoid processing delays and additional fees for the recipient.
Note: This calculator provides estimates based on standard 2023/2024 retail rates. Actual prices may vary depending on rural delivery surcharges, fuel adjustments, and specific packaging dimensions.