DEV Community

Rojo
Rojo Subscriber

Posted on • Originally published at packagepr.com

Amazon Puerto Rico in 2025: What Ships, What Doesn't, and the $50M Workaround Industry

Amazon is the world's biggest retailer. Puerto Rico has 3.2 million American consumers. You'd think it would be simple.

It's not.

In 2025, roughly 30-40% of Amazon's catalog still doesn't ship to Puerto Rico addresses. No explanation at checkout — just "This item cannot be shipped to your location."

What Actually Ships to PR

✅ Generally Ships Fine

  • Books, media, digital products
  • Most clothing and shoes (fulfilled by Amazon)
  • Small electronics (cables, accessories, phone cases)
  • Beauty products under 16oz
  • Kitchen gadgets under 10 lbs

⚠️ Sometimes Ships, Sometimes Doesn't

  • Larger electronics (laptops, monitors) — depends on seller
  • Home goods — Amazon-fulfilled usually works, third-party often doesn't
  • Pet supplies — food ships, heavy items don't
  • Supplements — some flagged as hazmat

❌ Almost Never Ships

  • Anything with lithium batteries over certain thresholds
  • Aerosol products
  • Large furniture
  • Anything from third-party sellers who didn't configure PR shipping
  • Most "Subscribe & Save" heavy items
  • Pool chemicals, automotive fluids, anything flammable

The Technical Reason

Amazon's shipping engine checks:

  1. Seller configuration: Did the seller enable PR in their shipping template?
  2. Carrier eligibility: Can UPS/FedEx/AMZL deliver this item to PR?
  3. Hazmat classification: Is the item restricted for ocean/air freight?
  4. Weight/dimension: Does it exceed the carrier's PR threshold?

If any check fails, you get blocked. And most third-party sellers never configured step 1.

The Numbers

Metric Mainland US Puerto Rico
Catalog availability ~100% ~60-70%
Prime 2-day delivery Yes Rarely (5-14 days typical)
Same-day delivery Major metros No
Free shipping threshold $25 $25 (but often hits surcharges)
Average delivery time 2-3 days 7-14 days

The Workaround Industry

The gap between what Amazon offers PR vs mainland has created a multi-million dollar forwarding industry:

  • Companies like PackagePR provide mainland US addresses
  • Customers ship Amazon orders to the forwarding warehouse
  • Packages get consolidated and shipped to PR
  • Typical savings: 30-50% vs individual direct shipping with surcharges

This works because:

  • 100% of Amazon's catalog ships to a mainland address
  • Consolidation reduces per-item shipping costs
  • Forwarding services handle the ocean freight logistics

For Developers: Amazon MWS/SP-API

If you're building tools that integrate with Amazon's API:

# Check if item ships to PR before displaying
def check_pr_eligibility(asin):
    # Use Amazon's GetEligibleShippingServices
    response = sp_api.get_eligible_shipping_services(
        ship_to_country='US',
        ship_to_state='PR',
        ship_to_zip='00901'
    )
    return len(response.shipping_services) > 0
Enter fullscreen mode Exit fullscreen mode

What's Improving

Amazon has been slowly expanding PR coverage:

  • Amazon Fresh launched in metro San Juan (2024)
  • Prime delivery times improved from 14-21 days to 7-14 days
  • More Amazon-fulfilled items now ship vs 2023

But the core problem remains: third-party sellers (60%+ of Amazon's marketplace) mostly don't configure PR shipping.


Full guide: Does Amazon Ship to Puerto Rico?

Top comments (0)