Live API Portal

Shipping Label
Generation API

Generate shipping labels across multiple carriers through a single unified API endpoint.

View API Docs → ShipGlobal.in ↗
4
Carrier Integrations
1
Unified Endpoint
PDF
Base64 Label Output
REST
JSON API

What this portal does

Everything you need to generate compliant shipping labels at scale.

🚀

Single API Endpoint

One /addOrder.php endpoint handles all carriers. Switch service codes without changing your integration.

📄

PDF Base64 Labels

Labels are returned as Base64-encoded PDF strings — ready to decode and print directly from your system.

🔁

Duplicate Guard

Submitting the same order_reference twice is safe. Add ?download=true to retrieve the saved label.

🔐

Token Auth

Login once to get a Bearer token. Include it in the Authorization header on every order request.

📦

Multi-Carrier Support

DPD, UniUni, VipParcel and DHL E-Commerce — all accessible through the same request format.

Real-time Generation

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.

CarrierService CodeStatus
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.

POST  /api/v1/customers.php Login
{
  "email":    "you@example.com",
  "password": "••••••••"
}

// Response
{
  "token":      "eyJ...",
  "expires_at": "2026-12-31 23:59:59"
}
POST  /api/v1/addOrder.php Generate Label
// Response
{
  "success":  true,
  "label":    "generated",
  "data": {
    "order_number":   "ABCD1234",
    "waybill_number": "UUS000000",
    "pdf_base64":     "JVBERi0x..."
  }
}

Ready to integrate?

Read the full API documentation to get started with label generation.

Open API Documentation →