Integration partners Connect effortless to unlimited carriers and selling channels
One-click shipping, minimal engineering time. Instantly integrate your webshops, WMS, ERP, and marketplaces for efficient worldwide shipping.
MyShipper connections
Connect, select and ship worldwide
Carrier integrations
DHL eCommerce
Choose unparalleled convenience and reliability in local and international shipping, empowering your business to expand effortlessly and reach new markets with ease.
DHL Express
Experience unmatched speed and precision in courier services, connecting your business to global trade swiftly and securely, ensuring your shipments arrive on time.
DPD
Equipped with cutting-edge technology and a customer-centric approach, ensuring your business stays ahead in the fast-paced world of logistics.
DSV
Partner for tailored logistics solutions with boundless opportunities for your business, ensuring seamless trade across borders with unmatched efficiency.
FedEx
Delivering confidence with unmatched speed and dedication for every shipment and empowering your business to thrive in the competitive landscape of logistics.
GLS
Count on reliable cross-border shipping solutions that cater to your business needs, ensuring swift and secure delivery throughout Europe, and establishing trust with every shipment sent.
PostNL
Combines tradition with innovation to provide businesses with reliable and sustainable shipping solutions, ensuring every parcel reaches its destination with care.
UPS
Global leader in logistics and parcel delivery for efficient and reliable shipping solutions tailored to your business needs, navigating the complexities of global trade with confidence and ease.
ERP & WMS integrations
AFAS Software
Streamline business operations with comprehensive automation solutions, seamlessly integrated with all carriers, empowering growth.
Exaxt Online
Stay competitive with integrated finance, CRM, and ERP solutions, seamlessly connected with all carriers for efficient logistics.
Microsoft Dynamics 365
Drive innovation with unified CRM and ERP, seamlessly connected with all carriers for efficient logistics management.
Picqer
Optimise warehouse management with innovative solutions, seamlessly integrated with all carriers for efficient operations.
Marketplace integrations
Amazon
Maximise sales on a global marketplace, seamlessly connected with all carriers, ensuring efficient shipping for customers.
Bol.com
Showcase products to millions, on a leading marketplace, seamlessly integrated with all carriers, ensuring smooth order fulfillment.
Ebay
Sell efficiently worldwide on a dynamic marketplace, seamlessly connected with all carriers, providing global shipping solutions.
Marktplaats
Connect with millions on the largest marketplace in the Netherlands, seamlessly integrated with all carriers for efficient transactions.
Webshop integrations
BigCommerce
Scale your online store effortlessly with customisable solutions, seamlessly integrated with all carriers for smooth shipping.
Magento
Create engaging shopping experiences with a flexible platform, seamlessly integrated with all carriers for smooth shipping.
Magento2
Elevate your store with advanced features, seamlessly integrated with all carriers, meeting evolving business needs.
My Online Store
Simplify e-commerce with intuitive tools, seamlessly integrated with all carriers for smooth shipping and delivery.
PrestaShop
Create stunning online stores with powerful features, seamlessly integrated with all carriers for efficient shipping.
Shopify
Grow your business with an all-in-one platform, seamlessly integrated with all carriers for smooth logistics solutions.
WooCommerce
Transform your website into a store with customisable options, seamlessly integrated with all carriers for efficient shipping.
Shipping as a Service
Connect your own contracts and apps.
Access one of our integration modules and elevate your shipping process in a few clicks.
Connect, select and ship.
Platform
Access the MyShipper platform together with a wide variety of smart shippingtools. Ship globally using our carrier contracts.
Free
account
Connect
Arrange your full shipping process from one clear online platform and connect your own software and carrier contract.
€125
per Month
Connect+
Complete your shipping process by connecting multiple apps and carrier contracts. Arrange all your shipping from one environment.
€175
per Month
Powerful API's to integrate your logistics.
Easily integrate our APIs into your shop system, WMS, ERP, or marketplace to add core shipping functionalities to your business. One-click shipping, minimal engineering time.
Shipping
Get rates, create shipments, download labels, configure webhooks, and so much more.
Tracking
Track parcels in real time, retrieve delivery timestamps, and consolidate statuses in an easy-to-read format.
Returns
Create domestic and international returns, request returns to be cancelled and validate a return before creating the return label.
Checkout
Offer customers flexible delivery options and Europe’s largest network of service points at checkout.
Uptime of 99.99% · Clean and easy-to-read documentation
curl -X POST -k \
-u API_KEY:API_SECRET \
-H "Content-Type: application/json" \
-d '{"action": "quote"}' \
https://www.myshipper.nl/api/json
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.myshipper.nl/api/json");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(array("action" => "quote")));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
"Authorization: Basic " . base64_encode(API_KEY . ":" . API_SECRET)
));
$response = curl_exec($ch);
curl_close($ch);
$response = json_decode($response, true);
return $response;