Get started with the StoaPack 3D Bin Packing API in minutes.
Select the plan that best fits your needs:
You can start with the Starter plan and upgrade as your needs grow.
Use these examples to test the API with a basic optimization request:
POST https://stoapack.stoalogistics.com/api/v1.1/optimize
Headers:
{
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
Body (raw JSON):
{
"items": [
{
"id": "product-123",
"width": 10,
"height": 15,
"depth": 5,
"weight": 1.2,
"quantity": 3,
"requires_box": true
},
{
"id": "product-456",
"width": 20,
"height": 10,
"depth": 10,
"weight": 2.5,
"quantity": 2,
"requires_box": false
}
],
"warehouses": [
{
"id": "warehouse-main",
"inventory": {
"product-123": 10,
"product-456": 5
},
"available_boxes": [
{
"id": "box-small",
"width": 25,
"height": 25,
"depth": 25,
"max_weight": 10,
"quantity": 100,
"fill_percentage": 80
},
{
"id": "box-medium",
"width": 40,
"height": 30,
"depth": 35,
"max_weight": 25,
"quantity": 50
}
]
}
],
"unit": "cm",
"ai_review": true,
"custom_instructions": "Optimize for minimal box count and ensure fragile items are well-protected."
}
{
"solution": {
"warehouses": [
{
"id": "warehouse-main",
"items_fulfilled": [
{
"id": "product-123",
"quantity": 3
},
{
"id": "product-456",
"quantity": 2
}
],
"packing_solution": {
"boxes": [
{
"id": "pkg_warehouse-main_box-small_a1b2c3",
"box_id": "box-small",
"warehouse_id": "warehouse-main",
"utilization": 0.72,
"real_utilization": 0.58,
"fill_percentage": 80,
"dimensions": {
"width": 25,
"height": 25,
"depth": 25
},
"adjusted_dimensions": {
"width": 23.21,
"height": 23.21,
"depth": 23.21
},
"packed_items": [
{
"id": "product-123",
"position": {
"x": 0,
"y": 0,
"z": 0
},
"rotation": 0,
"dimensions": {
"width": 10,
"height": 15,
"depth": 5
}
}
]
}
],
"unboxed_items": [
{
"id": "product-456",
"quantity": 2
}
],
"unfitted_items": []
}
}
],
"unfulfilled_items": []
},
"ai_review": {
"assessment": "The packing solution optimizes space efficiently while following constraints.",
"meets_requirements": true,
"issues": [],
"recommendations": [
"Consider grouping similar items together for easier handling."
],
"overall_rating": 4.5,
"custom_instructions_used": "Optimize for minimal box count and ensure fragile items are well-protected."
},
"metadata": {
"api_version": "1.1.0",
"request_id": "req_a1b2c3d4e5f6",
"processing_time": 0.754
}
}
The API returns a JSON response with the optimized packing solution:
requires_box: false
that don't need packagingWhen using the fill_percentage
parameter, boxes in the response will include these additional fields:
Note the id
field in each packed box follows the format: pkg_<warehouse_id>_<box_id>_<random_string>
Items found in warehouse.packing_solution.unfitted_items
Items found in solution.unfulfilled_items
Supply multiple warehouses to optimize across your entire network:
Control how full each box can be packed using the fill_percentage parameter:
utilization
(relative to adjusted dimensions) and real_utilization
(relative to original dimensions)Add the ai_review: true
and custom_instructions
fields to get AI feedback:
custom_instructions
is provided, the AI will create the packing solution directly instead of using the algorithmrequires_box: false
flag for items that can ship without packagingfill_percentage
parameter (1-100%) to control how full boxes can be packed: