sounds like you're one bad integration away from a full tech stack divorce. fedex saturday delivery through shippo is like asking a gps to work in a tunnel—theoretically possible, maybe someone did it once, but good luck finding them. Answer from kubrador on reddit.com
🌐
Reddit
reddit.com › r/sideprojects › i built a unified shipping api that queries shippo, easypost, and shipengine with one request
r/sideprojects on Reddit: I built a unified shipping API that queries Shippo, EasyPost, and ShipEngine with one request
March 17, 2026 -

Hey everyone! I built something for developers who work with shipping APIs and wanted to share it.

The problem

I had an e-commerce client who wanted to compare rates across Shippo, EasyPost, and ShipEngine at the same time. They noticed rates fluctuate depending on the route, time, weight, package dimensions, and which carriers each provider surfaces. Some providers return UPS options that others don't.

The catch is each provider has a completely different API. Different auth methods, different request schemas, different response formats. Supporting all three means building and maintaining three separate integrations.

What I built

RateShip is a single REST API that sits in front of all three providers. You connect your existing provider API keys, make one request, and get back a unified, normalized list of rates sorted by price. It also handles label purchasing and webhook delivery for tracking events.

How it works

  • Connect your Shippo, EasyPost, or ShipEngine API keys (encrypted)

  • Make one POST to /api/v1/rates with your shipment details

  • RateShip fans out to all connected providers in parallel.

  • Results come back normalized into a single schema, sorted by price

  • Pick a rate, buy the label through the same API, get a tracking number back

  • Handle webhooks from each provider, normalize and send it to you.

Resources

  • Site: rateship.io

  • Docs: rateship.io/docs

  • SDK: npm install rateship

There's a free tier (100 rate requests/month, 10 labels) if anyone wants to try it out. Would love any feedback, especially from anyone who's worked with these shipping APIs before.

🌐
Reddit
reddit.com › r/ecommerce › shippo help or recommendations
r/ecommerce on Reddit: Shippo help or recommendations
September 7, 2024 -

Hello, I am a developer helping a friend with their prestashop website. They are having problems with their Shippo account, they want to make automatic labels, but can only do it for existing customers. Every time a new customer orders they have to manually enter shipping details. I’m not too versed in Shippo, but that is a typical feature of shipping platforms. From what I can see online it is possible to do, so does anyone have experience creating automatic shipping labels with Shippo? Also, does anyone have experience working with Shippo through prestashop? Please send in your recommendations!

Top answer
1 of 2
1
It sounds like you've got a bit of a challenge on your hands. Automating shipping labels is definitely a common feature, but working with Shippo and PrestaShop can be tricky if you haven't dug into their APIs much. You might want to check if Shippo offers webhooks or API endpoints that can capture new order details automatically. Integration usually requires some custom coding, but once it's set up, it can save a lot of time. If you're looking for recommendations, I'd check out Shippo's documentation and maybe search for PrestaShop plugins specifically built for Shippo integration. Sometimes the community forums might have some gems as well. Good luck with it.
2 of 2
1
Hi, First, you can use Shippo’s API to handle this process. If you’re comfortable with coding, you can set up your site to automatically generate shipping labels whenever a new order is placed. Shippo’s API is flexible and allows you to customize the process to fit your needs. Here’s a simple example in PHP that shows how you might create a shipping label using their API. require_once(‘lib/Shippo.php’); Shippo::setApiKey(“”); $fromAddress = array( ‘name’ => ‘Your Name’, ‘street1’ => ‘Your Address’, ‘city’ => ‘Your City’, ‘state’ => ‘Your State’, ‘zip’ => ‘Your ZIP’, ‘country’ => ‘US’ ); $toAddress = array( ‘name’ => ‘Customer Name’, ‘street1’ => ‘Customer Address’, ‘city’ => ‘Customer City’, ‘state’ => ‘Customer State’, ‘zip’ => ‘Customer ZIP’, ‘country’ => ‘US’ ); $parcel = array( ‘length’=> ‘5’, ‘width’=> ‘5’, ‘height’=> ‘5’, ‘distance_unit’=> ‘in’, ‘weight’=> ‘2’, ‘mass_unit’=> ‘lb’, ); $shipment = Shippo_Shipment::create(array( ‘address_from’=> $fromAddress, ‘address_to’=> $toAddress, ‘parcels’=> array($parcel), ‘async’=> false )); I hope it also works for you Just keep in mind this advice is coming from someone who’s an expert in launching private label products on Amazon (as a Service Provider). So, if you want to know more about that, just let me know! Thanks
🌐
Workload
workload.co › api › reddit › integrations › shippo
Reddit and Shippo Integrations | Workload™ Automation
January 4, 2022 - For the most accurate pricing, visit https://reddit.com/pricing for more details. Shippo provides a multi-carrier API and dashboard to help merchants and platforms get real-time rates, print labels, automate international paperwork, track packages and facilitate returns.
🌐
Reddit
reddit.com › r/ecommerce › devs with shippo experience - do test orders not show in dashboard when created via api?
r/ecommerce on Reddit: Devs with Shippo experience - do test orders not show in dashboard when created via api?
December 29, 2025 -

I have an ecommerce and have been using Shippos api's for rates and label purchasing but wanted to start creating Orders in order to use the automatic email tracking updates(saves me from having to build my own system from scratch with webhooks and mailers etc...)

So far, my api call gets a success message with the Order object. However, I dont see the test Order in my dashboard... Is that normal for test orders?

Save me from cold sweats before deployment lol

Find elsewhere
🌐
Reddit
reddit.com › r/node › shippo node.js help
r/node on Reddit: Shippo node.js help
September 16, 2020 -

I’m trying to help my friend create a form shipping label. I’m in charge of the backend and he said to use the single list API call. There’s a step by step on the main shippo website but I unfortunately don’t understand it. I’ve used node for user profiles involving schema, models and mongoDB for databases. But for creating a shipping label I have no idea how to begin or understand how to go on about this problem. My initial thought was to create routes but that goes back to models which these forums don’t seem to have. Any guidance would be great, sorry for dumb questions but I’m new at this

🌐
Appy Pie Automate
appypieautomate.ai › app directory › reddit integrations › shippo integrations
Reddit Shippo Integration | Appy Pie Automate
November 24, 2024 - Creates a new order in Shippo. ... Choose Reddit as the trigger app, select the desired event, authenticate your account, and successfully run a test.
🌐
Reddit
reddit.com › r/ecommerce › seamless, live rates from shippo at checkout?
r/ecommerce on Reddit: Seamless, live rates from shippo at checkout?
November 11, 2023 -

I really need to get live international shipping rates up and working, but ecwid just won't cut it. It's a minimum of $1200 dev time just to get the basics working and that doesn't include getting tracking numbers from shippo, or actually creating the label.

Is there a store front that completely integrates with shippo?

Shipping rates at checkout is the hardest thing in the world to do apparently.

Any tips on where to go next would be appreciated!

🌐
Reddit
reddit.com › r/ecommerce › shippo + dhl giving problems
r/ecommerce on Reddit: Shippo + DHL giving problems
September 6, 2024 -

Anyone using their personal DHL account with Shippo? How did you get it to work because for the life of me I can't get it to work, Shippo is telling me in logs that my site id (API key) is wrong but DHL devs insist it's accurate, i even contacted Shippo and they said the API key is wrong, am so vexed right now, anyone know a solution to this problem?

Sorry for the Rant

🌐
Reddit
reddit.com › r/entrepreneur › i work for a shipping company that works with thousands of e-commerce businesses, we collected our most frequently given advice on how to reduce shipping costs in 2016.
r/Entrepreneur on Reddit: I work for a shipping company that works with thousands of e-commerce businesses, we collected our most frequently given advice on how to reduce shipping costs in 2016.
January 19, 2016 -

I work for a shipping company called Shippo. We build shipping APIs and dashboards to make shipping awesome for thousands of e-commerce businesses.

As a part of our work, we often get asked questions on how to reduce shipping costs. So we made a collection of our most frequently given advice on how to optimize shipping on our blog. Hope it can be of use for this community as well.

Here's the post!

Edit: We recently published a post on alternative USPS shipping methods if you're looking to stay with them, but vary your packing style a bit.

🌐
Reddit
reddit.com › r/ecommerce › shipment api for large products
r/ecommerce on Reddit: Shipment API for large products
August 9, 2022 -

Hello friends. I use my Woocommerce based Webshop to sell large sized products around the US. Think large washing machine size. I would like to integrate some sort of shipment API so i can calculate shipping rates before checkout. Right now i just add a flat fee which sometimes works out great, most times makes me loose money.

What is a common provider that people use for this? Regular FedEx etc won't do as the product is too bulky and too heavy. Thanks!

🌐
Reddit
reddit.com › r/ecommerce › suggestions on shipping api
r/ecommerce on Reddit: Suggestions on Shipping API
May 16, 2018 -

We are building a B2B marketplace where our sellers handle shipping (they have their own UPS/Fedex accounts). What is the cheapest shipping API to get real time shipping rates from our sellers accounts. Our sellers don't need additional services like insurance and label printing, the only feature we are looking for is real time shipping rates.

🌐
Reddit
reddit.com › r/ecommerce › shipstation is awful - alternatives?
r/ecommerce on Reddit: ShipStation is awful - alternatives?
July 20, 2025 -

Shipstation is the worst system. So many of the API connections have faults and bugs. For example, with a particular carrier the system reports a different base cost for a label compared to when you actually purchase it (eg overcharging). Or you can't ship a package with your own custom box size and must select the default and amend the measurements.

Their support team seem to have about four braincells between their entire team, and cannot comprehend anything even if you send screenshots. Multiple attempts to refund through a carrier and they will absolutely not do ANYTHING to help you (even though carrier insists it must be filed through their account). They seem to have no idea how their own system works, insisting certain things to you that are just plain wrong and untrue.

So, what are the alternatives? I cannot operate a business with Shipstation being part of it any longer. I am in Canada, FYI.