REST API, real-time webhooks, Node.js/PHP SDKs, and official Shopify & WooCommerce plugins — all fully documented.
Version-stable endpoints for orders, couriers, tracking, labels, and webhooks. JWT authentication.
Read docsSubscribe to order_created, picked_up, in_transit, delivered, rto events — pushed to any HTTPS endpoint.
Read docsOfficial Node.js npm package, PHP library, Shopify app, and WooCommerce plugin. Install and ship in minutes.
Read docs// Book a shipment via REST API
const response = await fetch('https://api.shiphumse.in/v2/orders', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_JWT_TOKEN',
'Content-Type': 'application/json',
},
body: JSON.stringify({
pickup_pincode: "400001",
delivery_pincode: "560001",
weight: 0.5,
payment_method: "prepaid",
}),
});
const order = await response.json();
// → { id, tracking_url, label_url, courier }