Univooz Public API

Dispatch deliveries from your own software.

Connect your POS, booking tool or ERP straight to a delivery fleet. Create an order with one call and the connected fleet receives it in real time, exactly as if a person had typed it in.

POST/v1/orders
curl https://api.univooz.com/v1/orders \
  -H "Authorization: Bearer uv_test_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "externalOrderId": "PO-88213",
    "branch": "noerrebro",
    "customer": {
      "firstName": "Alex",
      "phone": "+45 20 12 34 56",
      "address": {
        "street": "Sortedam Dossering 55",
        "city": "Copenhagen",
        "postcode": "2100"
      }
    },
    "schedule": { "mode": "asap" }
  }'

A 201 comes back with the routed fleet, the zone, and the pickup and delivery times Univooz has committed to.

Documentation