Calculate CBM & Container Fit
calculate_cbmCalculate total shipment volume (CBM / cubic metres and CFT / cubic feet), total weight, and how that cargo fits into standard shipping containers (20ft Standard, 40ft Standard, 40ft High Cube). Use this whenever someone asks how much space a shipment takes, how many cubic metres or CBM their boxes / pallets / cartons add up to, whether cargo will fit in a container, what container size they need, or how full a container will be. Accepts a list of items with length, width, height, weight and quantity in metric (cm, kg) or imperial (in, lb) units; returns total CBM, CFT, total weight, and per-container fill percentage with an overload flag.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | The cargo line items to total up. | |
| unitSystem | No | Units for the item dimensions and weight. 'metric' = centimetres and kilograms; 'imperial' = inches and pounds. | metric |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| totalCbm | Yes | ||
| totalCft | Yes | ||
| containers | Yes | ||
| calculatorUrl | Yes | ||
| totalWeightKg | Yes | ||
| totalWeightLbs | Yes |