Shipwire (Ingram Micro Commerce)
EcosystemGlobal fulfillment network operated by Ingram Micro with warehouse locations across North America, Europe, and Asia Pacific. Provides a REST API for order submission, inventory management, and multi-carrier shipping across global regions.
Shipwire is a global fulfillment network that Ingram Micro acquired and operates as part of its commerce services portfolio. The network provides warehousing and fulfillment across North America, Europe, and Asia Pacific, enabling merchants to fulfill orders from inventory positioned close to buyers in each region without managing their own warehouse infrastructure.
The Shipwire platform is API-first by design. The REST API covers inbound shipment scheduling for receiving inventory, inventory queries by SKU and warehouse location, order submission for fulfillment, carrier rate shopping across the global carrier network, and shipment tracking. The multi-region architecture means a single API integration can handle fulfillment across all supported regions using the same request format.
Shipwire integrates with e-commerce platforms including Shopify, Magento, and WooCommerce through pre-built connectors. The API supports custom integrations for platforms not covered by native connectors. Webhook subscriptions deliver order and inventory events in real time.
For agents operating in cross-border commerce contexts, Shipwire is relevant because it handles international fulfillment complexity through a single API. An agent handling a purchase for a buyer in Japan can submit the order to Shipwire and receive fulfillment from the APAC warehouse node without managing regional carrier integrations separately. Shipwire's connection to Ingram Micro's broader distribution network also makes it relevant for technology product fulfillment, where Ingram Micro's wholesale distribution relationships can support global commerce workflows that agents initiate through UCP.
Why This Matters for UCP
Shipwire provides a global 3PL fulfillment network via Ingram Micro with a unified REST API that agents can use to submit UCP-initiated orders for cross-border fulfillment across North America, Europe, and Asia Pacific from a single integration.
UCP Capabilities
UCP Endpoint
Ecosystem — Endpoint not yet publicly available
Integration Example
// Shipwire REST API for global fulfillment order management.
// Agents submit orders and retrieve carrier rates across multiple regions.
const SHIPWIRE_API = 'https://api.shipwire.com/api/v3';
const auth = Buffer.from(
process.env.SHIPWIRE_EMAIL + ':' + process.env.SHIPWIRE_API_TOKEN
).toString('base64');
// Get shipping rates for an order
const rates = await fetch(SHIPWIRE_API + '/rate', {
method: 'POST',
headers: {
Authorization: 'Basic ' + auth,
'Content-Type': 'application/json',
},
body: JSON.stringify({
order: {
shipTo: { address1: '1-chome', city: 'Tokyo', country: 'JP', postalCode: '100-0001' },
items: [{ sku: 'PRODUCT-A', quantity: 1 }],
},
options: { currency: 'USD', groupBy: 'all' },
}),
}).then(r => r.json());
console.log('Available rates:', rates.resource?.items?.map((r: any) => r.serviceOptions?.map((s: any) => s.serviceLevelCode + ': $' + s.cost?.amount)));
// Submit an order for fulfillment
const order = await fetch(SHIPWIRE_API + '/orders', {
method: 'POST',
headers: {
Authorization: 'Basic ' + auth,
'Content-Type': 'application/json',
},
body: JSON.stringify({
externalId: 'UCP-ORDER-' + Date.now(),
externalReferenceId: 'ucp_checkout_001',
shipTo: { name: 'Yuki Tanaka', address1: '1-chome', city: 'Tokyo', country: 'JP', postalCode: '100-0001' },
items: [{ sku: 'PRODUCT-A', quantity: 1 }],
options: { serviceLevelCode: 'PB', expectedShipDate: '2026-05-01' },
}),
}).then(r => r.json());
console.log('Shipwire order:', order.resource?.id, 'Status:', order.resource?.status);Category
Fulfillment & OMSUCP Status
EcosystemTags
Pricing
paid
Is this your listing? Claim it to get analytics, a verified badge, and priority placement. Claim your listing →
Reviews
★★★★★4.7 (3 reviews)These are illustrative examples to show what reviews will look like. Submit your own experience below.
M. Lee
Backend Developer · Mar 3, 2026
Works well for our use case. The documentation is accurate and the implementation matches what the spec describes.
R. Kapoor
Platform Engineer · Jan 15, 2026
Integrated in an afternoon. Solid implementation with no unexpected edge cases in production.
J. Santos
Senior Engineer · Feb 28, 2026
Integration was straightforward. The UCP endpoint discovery works as documented and checkout completes in under 2 seconds.
9 other tools in Fulfillment & OMS
Is this your tool? Claim this listing
Related Fulfillment & OMS
Whiplash
Fulfillment & OMS
Omnichannel fulfillment and 3PL platform supporting both B2C direct-to-consumer and B2B wholesale shipments from the same inventory pool. Offers a REST API for order management, inventory queries, and carrier selection.