pari-express
v1.0.0
Published
Unofficial Node.js SDK for Delhivery One APIs
Downloads
108
Maintainers
Readme
PariExpress 🚚
Unofficial Node.js SDK for Delhivery One APIs
PariExpress is a lightweight, easy-to-use Node.js SDK to integrate with Delhivery One logistics APIs — including serviceability, shipment creation, tracking, pickup requests, manifests, and more.
⚠️ Note: This SDK is not officially provided by Delhivery. It wraps Delhivery’s public APIs using HTTP and helps you integrate with them from Node.js.
npm install pari-express
import PariExpress from "pari-express";
const pari = PariExpress({ token: process.env.DELHIVERY_TOKEN, });
// Serviceability await pari.serviceability.checkPincode("400086");
// Create Shipment await pari.shipment.createShipment({ shipments: [...] });
// Track Order await pari.tracking.trackByWaybill("1234567890");
// Cancel await pari.shipment.cancelShipment("1234567890");
🚀 Features
✔ Pincode Serviceability
✔ Shipment creation
✔ Generate waybills
✔ Track shipments
✔ Cancel shipments
✔ Pickup requests
✔ Manifest generation
✔ Centralized error handling
📦 Installation
