Nova Poshta Integration Platform
Integrate Nova Poshta into your business systems

// Add a new key
const api = new DeliveryAPI({ apiKey: "YOUR_API_KEY" });
// Create a Nova Poshta shipment in a single request
const shipment = await api.novaPoshta.createShipment({
recipient: "John Dow",
city: "Wrocław",
warehouse: "5",
weight: 2
});
console.log("Shipment create:", shipment.trackingNumber);
