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.
Extreme-point 3D solver
Multi-trial parallel optimizer with 12–48 trials, axle balancing, group routing, hazardous separation, and physics-based stack rules. Built for 50,000-item plans in under four seconds.
Zobacz wszystkie →APIDeveloper-grade primitives
REST API and SDKs in seven languages. Same primitives across every binding: pack, vehicles, items, plans. OpenAPI 3.1, idempotent writes, p95 latency under 150 ms.
Zobacz wszystkie →INTEGRATIONSPlugs into your stack
Bi-directional sync with SAP, Oracle, NetSuite, Manhattan, Blue Yonder, Snowflake, Databricks, Coupa — plus EDI, CSV, and S3 drop. SOC 2 in transit.
Zobacz wszystkie →SECURITYEnterprise procurement-ready
SOC 2 Type II, GDPR, SSO/SAML, SCIM provisioning, hardened runtime with read-only data plane, customer-managed encryption keys on Pro and Custom plans.
Zobacz wszystkie →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.
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 }
]
}'