Calculators
Truckload optimization calculator API
Compute trucks required = max(ceil(totalVolume/truckVolume), ceil(totalWeight/truckPayload)) with the binding constraint and volume/weight utilization — deterministic FTL planning. Answers 'how many trucks do I need','is my freight cube or weight limited','truck utilization for this shipment'.
Price$0.01per request
MethodPOST
Route/v1/calc/logi-truckload-optimization
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
calclogisticsfreighttruckloadftloptimizationtransportutilization
API URL
Integration docshttps://x402.hexl.dev/v1/calc/logi-truckload-optimizationExample request
{
"totalVolumeM3": 120,
"totalWeightKg": 18000,
"truckVolumeM3": 76,
"truckPayloadKg": 24000
}Example response
{
"formula": "trucks = max(ceil(totalVolume/truckVolume), ceil(totalWeight/truckPayload))",
"trucksRequired": 2,
"trucksByVolume": 2,
"trucksByWeight": 1,
"limitingFactor": "volume",
"volumeUtilization": 0.7895,
"weightUtilization": 0.375,
"inputs": {
"totalVolumeM3": 120,
"totalWeightKg": 18000,
"truckVolumeM3": 76,
"truckPayloadKg": 24000
}
}Input schema
{
"type": "object",
"required": [
"totalVolumeM3",
"totalWeightKg",
"truckVolumeM3",
"truckPayloadKg"
],
"properties": {
"totalVolumeM3": {
"type": "number",
"examples": [
120
]
},
"totalWeightKg": {
"type": "number",
"examples": [
18000
]
},
"truckVolumeM3": {
"type": "number",
"examples": [
76
]
},
"truckPayloadKg": {
"type": "number",
"examples": [
24000
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}