Myus Shipping Rate Calculator

.myus-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e4e8; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .myus-calc-header { text-align: center; margin-bottom: 25px; } .myus-calc-header h2 { color: #004685; margin-bottom: 10px; } .myus-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .myus-input-group { margin-bottom: 15px; } .myus-input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; } .myus-input-group input, .myus-input-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .myus-btn { grid-column: span 2; background-color: #004685; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background 0.3s; } .myus-btn:hover { background-color: #003366; } .myus-result { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-left: 5px solid #004685; border-radius: 6px; display: none; } .myus-result h3 { margin-top: 0; color: #004685; } .myus-result-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #eee; } .myus-result-item:last-child { border-bottom: none; font-weight: bold; font-size: 1.2em; color: #d32f2f; } .myus-article { margin-top: 40px; line-height: 1.6; color: #444; } .myus-article h2 { color: #004685; } .myus-article h3 { color: #333; } @media (max-width: 600px) { .myus-calc-grid { grid-template-columns: 1fr; } .myus-btn { grid-column: span 1; } }

MyUS Shipping Estimator

Estimate international shipping rates from US retailers to your doorstep.

Canada / Mexico UK / Western Europe Middle East (UAE, SA) Asia / Pacific Australia / NZ Africa / South America
Single Package (Standard) Premium (20% Discount) Business (25% Discount)

Estimated Shipping Summary

Actual Weight: 0 lbs
Dimensional Weight: 0 lbs
Chargeable Weight: 0 lbs
Base Shipping Rate: $0.00
Membership Discount: -$0.00
Total Estimated Cost: $0.00

Understanding MyUS Shipping Rates

Shipping products internationally from the US can be complex, but using a service like MyUS simplifies the process by providing a US-based address. However, the cost of shipping isn't just about how much the box weighs. Our MyUS shipping rate calculator helps you navigate the two primary factors that determine your final bill: Actual Weight and Dimensional Weight.

What is Dimensional Weight?

In the shipping industry, space is often more valuable than weight. A large box filled with feathers takes up more room on a plane than a small box of lead. Carriers use a formula (L x W x H / 139) to determine "Dimensional Weight." MyUS typically charges you based on whichever is higher—the actual weight or the dimensional weight.

How to Use This Calculator

  • Weight: Enter the weight of your package in pounds (lbs).
  • Dimensions: Enter the length, width, and height of the shipping box in inches.
  • Destination: Select your global region. Rates vary significantly by distance and local infrastructure.
  • Membership: Premium and Business members receive significant discounts (up to 25%) on shipping rates compared to standard single-package users.

Typical Example Calculation

Suppose you are shipping a pair of boots to the UAE. The box weighs 6 lbs and measures 14x12x6 inches.
1. Actual Weight = 6 lbs.
2. Dimensional Weight = (14 * 12 * 6) / 139 = 7.25 lbs.
3. Chargeable Weight = 7.25 lbs (since it is higher than 6).
If the base rate for the Middle East is $22/lb, your membership discount is applied to the final total.

Tips to Save on MyUS Shipping

One of the best ways to save is Package Consolidation. If you buy from three different stores, MyUS can combine those items into one box, reducing the "first pound" premium and minimizing dimensional weight waste. Premium members often save enough on shipping to cover their monthly fee in just one or two shipments.

function calculateMyUSRate() { var weight = parseFloat(document.getElementById('pkgWeight').value); var length = parseFloat(document.getElementById('pkgLength').value); var width = parseFloat(document.getElementById('pkgWidth').value); var height = parseFloat(document.getElementById('pkgHeight').value); var regionFactor = parseFloat(document.getElementById('destination').value); var discountPercent = parseFloat(document.getElementById('membership').value); if (isNaN(weight) || weight <= 0) { alert("Please enter a valid package weight."); return; } // Calculate Dimensional Weight (Standard International Divisor 139) var dimWeight = 0; if (!isNaN(length) && !isNaN(width) && !isNaN(height)) { dimWeight = (length * width * height) / 139; } // Chargeable weight is the greater of the two var chargeableWeight = Math.max(weight, dimWeight); // Base rate calculation (Simplified simulation based on MyUS regional averages) // First pound is usually more expensive, subsequent pounds are cheaper var basePrice = regionFactor + ((chargeableWeight – 1) * (regionFactor * 0.65)); if (chargeableWeight < 1) { basePrice = regionFactor; } var discountAmount = basePrice * discountPercent; var finalTotal = basePrice – discountAmount; // Display results document.getElementById('resActual').innerHTML = weight.toFixed(2) + " lbs"; document.getElementById('resDim').innerHTML = dimWeight.toFixed(2) + " lbs"; document.getElementById('resChargeable').innerHTML = chargeableWeight.toFixed(2) + " lbs"; document.getElementById('resBase').innerHTML = "$" + basePrice.toFixed(2); document.getElementById('resDiscount').innerHTML = "-$" + discountAmount.toFixed(2); document.getElementById('resTotal').innerHTML = "$" + finalTotal.toFixed(2); document.getElementById('myusResult').style.display = 'block'; }

Leave a Comment