Przejdź do treści
CargoDuo logoCargoDuo
Cennik
Platforma

The platform behind every load.

A 3D solver, a developer API, an integrations hub, and a security model — built so logistics teams can ship more in fewer trucks, without changing how their warehouse works.

FEATURES

Constraints that actually match the loading dock.

Group routing modes

wall · routing · no-stack — every order delivered in extraction order, no surprises at the dock.

Hazardous cargo separation

ADR/DOT-aware constraints. Class 3 flammables stay away from oxidizers, automatically.

Floor-load capacity

Per-square-meter weight limits enforced. No more cracked decks at distribution centers.

Multi-vehicle fleet optimization

Heterogeneous fleets with axle constraints. Route 50 trucks at once and let the solver pick the cheapest mix.

Pallet & ULD modes

Top-down gravity loading, zero gaps, balanced for forklift handling. Air ULDs included.

Loading guide export

Step-by-step PDF and mobile guide. Forklift drivers follow the plan on a phone, not on paper.

API

Pack a truck in a single call.

POST /v1/plans with a vehicle and an item list. Returns box-by-box coordinates, axle loads, utilization, and a step-by-step loading guide. Idempotent writes, p95 latency under 150 ms, OpenAPI 3.1 spec ships with every release.

curl -X POST https://api.cargoduo.com/v1/plans \
  -H "Authorization: Bearer $CD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "vehicle_id": "tir_13_6",
    "items": [
      { "item_id": "PAL-A12", "qty": 24 },
      { "item_id": "PAL-B07", "qty": 12 }
    ]
  }'