Generate shipping labels across multiple carriers through a single unified API endpoint.
What this portal does
Everything you need to generate compliant shipping labels at scale.
One /addOrder.php endpoint handles all carriers. Switch service codes without changing your integration.
Labels are returned as Base64-encoded PDF strings — ready to decode and print directly from your system.
Submitting the same order_reference twice is safe. Add ?download=true to retrieve the saved label.
Login once to get a Bearer token. Include it in the Authorization header on every order request.
DPD, UniUni, VipParcel and DHL E-Commerce — all accessible through the same request format.
Labels are generated and returned synchronously. No webhooks or polling needed for standard orders.
Supported Carriers
Pass the service code in the service field of your request.
| Carrier | Service Code | Status |
|---|---|---|
| DPD | DPD-CLASSIC | Active |
| UniUni | UNIUNI-CLASSIC | Active |
| VipParcel | VIPPARCEL-CLASSIC | Active |
| DHL E-Commerce | DHLECS-CLASSIC | Active |
Quick Reference
Two API calls are all you need — authenticate, then create an order.
{
"email": "you@example.com",
"password": "••••••••"
}
// Response
{
"token": "eyJ...",
"expires_at": "2026-12-31 23:59:59"
}
// Response { "success": true, "label": "generated", "data": { "order_number": "ABCD1234", "waybill_number": "UUS000000", "pdf_base64": "JVBERi0x..." } }
Read the full API documentation to get started with label generation.
Open API Documentation →