📖API List
- pack_packages: Optimize Packing into bins for shipping, storage and transport.
🌍Endpoints
Currently, we provide these Endpoints, and RapidAPI will automatically select the nearest Endpoint based on the region.
1. US East(Virginia, USA)
2. Europe(London, UK)
3. Southeast Asia(Singapore)
4. Asia(Hangzhou, China)
⚙️Pack Packages
Optimize Packing into bins for shipping, storage and transport.
Good for Warehousing and Logistics.
Core Features
1. Fast and accurate result
2. Support multi-objective optimization which provides greater flexibility and is more aligned with business needs.
3. For third parties/fourth parties who are unaware of the Bin costs, the optimization target supports optimizing the surface area of packaging materials. Assuming that the material and specifications are not considered, the cost of BIn is linearly related to the surface area.
4. Support custom orientation of items. For example, fragile items can be placed upright, and heavy items can be placed flat. This can prevent damage caused by gravitational shift or compression during transportation.
5. Support the grouping of goods. For example, chemicals and food should not be packed in the same box, and this also facilitates the classification and management of goods.
6. Support independent packaging. Certain items, such as high-value goods, should be packaged independently to prevent damage caused by friction with other items during transportation.
7. Support both final and step-by-step packing guidance. Algorithm provides the order of goods placement and coordinate data, which facilitates data visualization to guide the packing process.
8. Provide detailed data for each package to facilitate verification and reduce the workload of later data processing and subsequent algorithm integration. For example, the volume utilization rate and weight of the package.
9. supports weight capacity to prevent recommending excessively heavy goods for the lightweight plastic packaging bags in the Bin
🚀Application Scenarios
Box Recommend
During warehouse packing operations, the system automatically recommends the most cost-effective packaging materials that can accommodate all items based on product dimensions, weight, orientation, and other factors.
1. Improves packing efficiency by eliminating guesswork: With dozens of packaging options at the packing station, selecting the optimal one can be overwhelming and time-consuming. (save 100% thinking(guesswork) time)
2. Reduces packaging costs by preventing oversized boxes: Relying on experience alone often leads to using excessively large packaging for small items—a common source of material waste in warehouse operations. (save 5%-17% bin costs)
Order Splitting
When an outbound order contains too many items to fit into any single packaging material, it must be split into multiple packages.
1. Precise order splitting cuts labor costs and eliminates the issue of items not fitting even after manual splitting. (save 100% manual work)
2. Automated packaging recommendations boost efficiency and save on packaging costs. (save 5%-17% bin costs)
{"code":"SUCCESS","msg":null,"result":{"package_list":[{"bin":{"bin_code":"SMALL_SIZE_BIN","bin_length":10.0,"bin_width":10.0,"bin_height":10.0,"bin_weight":0.5,"bin_weight_capacity":10.0,"bin_cost":0.3,"bin_surface":600.0,"bin_volume":1000.0},"item_list":[{"item_code":"SNEAK","item_length":5.0,"item_width":5.0,"item_height":10.0,"item_num":1,"item_weight":0.5,"item_acceptable_orientation":["width_vertical","height_vertical","length_vertical"],"item_group":"default","item_individual_packing":0,"item_coordinate":{"x_start":0.0,"y_start":0.0,"z_start":0.0,"x_end":5.0,"y_end":5.0,"z_end":10.0},"item_volume":250.0}],"package_volume":1000.0,"item_volume":250.0,"unused_volume":750.0,"package_volume_fill_ratio":25.0,"item_weight":0.5,"bin_weight":0.5,"package_weight":1.0,"package_weight_use_ratio":5.0},{"bin":{"bin_code":"LARGE_SIZE_BIN","bin_length":10.0,"bin_width":30.0,"bin_height":10.0,"bin_weight":0.5,"bin_weight_capacity":15.0,"bin_cost":0.7,"bin_surface":1400.0,"bin_volume":3000.0},"item_list":[{"item_code":"CHEMICAL_ITEM","item_length":10.0,"item_width":10.0,"item_height":10.0,"item_num":1,"item_weight":1.0,"item_acceptable_orientation":["width_vertical","height_vertical","length_vertical"],"item_group":"CHEMICALS","item_individual_packing":0,"item_coordinate":{"x_start":0.0,"y_start":0.0,"z_start":0.0,"x_end":10.0,"y_end":10.0,"z_end":10.0},"item_volume":1000.0},{"item_code":"CHEMICAL_ITEM","item_length":10.0,"item_width":10.0,"item_height":10.0,"item_num":1,"item_weight":1.0,"item_acceptable_orientation":["width_vertical","height_vertical","length_vertical"],"item_group":"CHEMICALS","item_individual_packing":0,"item_coordinate":{"x_start":10.0,"y_start":0.0,"z_start":0.0,"x_end":20.0,"y_end":10.0,"z_end":10.0},"item_volume":1000.0},{"item_code":"CHEMICAL_ITEM","item_length":10.0,"item_width":10.0,"item_height":10.0,"item_num":1,"item_weight":1.0,"item_acceptable_orientation":["width_vertical","height_vertical","length_vertical"],"item_group":"CHEMICALS","item_individual_packing":0,"item_coordinate":{"x_start":20.0,"y_start":0.0,"z_start":0.0,"x_end":30.0,"y_end":10.0,"z_end":10.0},"item_volume":1000.0}],"package_volume":3000.0,"item_volume":3000.0,"unused_volume":0.0,"package_volume_fill_ratio":100.0,"item_weight":3.0,"bin_weight":0.5,"package_weight":3.5,"package_weight_use_ratio":20.0}],"non_packed_item_list":[{"item_code":"TOO_BIG_ITEM","item_length":1000.0,"item_width":1000.0,"item_height":1000.0,"item_num":2,"item_weight":100.0,"item_acceptable_orientation":["width_vertical","height_vertical","length_vertical"],"item_group":"default","item_individual_packing":0,"item_coordinate":null,"item_volume":1000000000.0}]}}
curl --location --request POST 'https://zylalabs.com/api/11237/3d+bin+packer+api/21484/pack+packages' --header 'Authorization: Bearer YOUR_API_KEY'
--data-raw '{
"param": {
"objective_priority": [
"bin_num",
"bin_cost",
"fill_ratio"
]
},
"data": {
"item_list": [
{
"item_code": "SNEAK",
"item_width": 5,
"item_height": 10,
"item_length": 5,
"item_num": 1,
"item_weight": 0.5,
"item_acceptable_orientation": null,
"item_individual_packing": 0
},
{
"item_code": "CHEMICAL_ITEM",
"item_width": 10,
"item_height": 10,
"item_length": 10,
"item_num": 3,
"item_weight": 1,
"item_group": "CHEMICALS",
"item_acceptable_orientation": null,
"item_individual_packing": 0
},
{
"item_code": "TOO_BIG_ITEM",
"item_width": 1000,
"item_height": 1000,
"item_length": 1000,
"item_num": 2,
"item_weight": 100
}
],
"bin_list": [
{
"bin_code": "SMALL_SIZE_BIN",
"bin_width": 10,
"bin_height": 10,
"bin_length": 10,
"bin_weight": 0.5,
"bin_weight_capacity": 10,
"bin_cost": 0.3
},
{
"bin_code": "MEDIUM_SIZE_BIN",
"bin_width": 20,
"bin_height": 10,
"bin_length": 10,
"bin_weight": 0.5,
"bin_weight_capacity": 12,
"bin_cost": 0.5
},
{
"bin_code": "LARGE_SIZE_BIN",
"bin_width": 30,
"bin_height": 10,
"bin_length": 10,
"bin_weight": 0.5,
"bin_weight_capacity": 15,
"bin_cost": 0.7
}
]
}
}'
| Cabeçalho | Descrição |
|---|---|
Authorization
|
[Obrigatório] Deve ser Bearer access_key. Veja "Sua chave de acesso à API" acima quando você estiver inscrito. |
Sem compromisso de longo prazo. Faça upgrade, downgrade ou cancele a qualquer momento. O teste gratuito inclui até 50 requisições.
O endpoint Pacotes de Pacotes retorna uma resposta JSON contendo uma lista de soluções de embalagem otimizadas, incluindo detalhes sobre as caixas e itens. Cada pacote inclui informações como dimensões da caixa, capacidade de peso, coordenadas dos itens e orientações aceitáveis
Os campos-chave na resposta incluem `bin_code`, `bin_dimensions`, `item_code`, `item_weight`, `item_group` e `item_coordinate`. Esses campos fornecem informações essenciais para entender como os itens são embalados em bins
Os dados da resposta estão estruturados em um formato JSON com um objeto de nível superior contendo uma `package_list`. Cada entrada nesta lista detalha um bin e seus itens correspondentes, permitindo que os usuários acessem facilmente as configurações de embalagem
Os usuários podem personalizar suas solicitações especificando parâmetros como dimensões do item pesos orientações e preferências de agrupamento Isso permite soluções de embalagem personalizadas com base em necessidades específicas
O endpoint fornece informações sobre especificações de bin, características do item, orientações de embalagem e regras de agrupamento Esses dados abrangentes ajudam a otimizar a embalagem para diversos cenários logísticos
Os usuários podem aproveitar os dados retornados para visualizar arranjos de embalagem verificar a utilização de volume e garantir conformidade com limites de peso Isso ajuda em uma embalagem eficiente e reduz o risco de danos durante o transporte
Casos de uso típicos incluem a otimização do empacotamento em armazéns a automação da divisão de pedidos e a recomendação de materiais de embalagem Essas aplicações aumentam a eficiência e reduzem custos nas operações logísticas
A precisão dos dados é mantida por meio de otimização algorítmica e verificações de validação durante o processo de embalagem A API garante que as recomendações de embalagem estejam alinhadas com as restrições especificadas e as características do item
O endpoint de Pacotes do Pack pode lidar com uma variedade de itens, incluindo produtos frágeis, itens pesados e produtos agrupados como químicos e alimentos. Os usuários podem especificar dimensões dos itens, pesos e orientações aceitáveis para otimizar o empacotamento com base em características específicas
Os usuários podem definir orientações aceitáveis para cada item em seu pedido Por exemplo itens frágeis podem ser configurados para serem embalados na vertical enquanto itens pesados podem ser orientados deitados para evitar danos durante o transporte
A API permite que os usuários definam regras de agrupamento para impedir que itens incompatíveis sejam embalados juntos, como manter produtos químicos separados dos alimentos. Isso aumenta a segurança e simplifica a gestão de inventário
Os usuários podem especificar que certos itens, como produtos de alto valor, devem ser embalados de forma independente Isso evita danos por atrito com outros itens durante o transporte, garantindo a integridade de produtos valiosos
A API oferece tanto orientações sobre a embalagem final quanto instruções passo a passo, incluindo a ordem de colocação dos itens e dados de coordenadas. Isso ajuda os usuários a visualizar o processo de embalagem e implementá-lo de forma eficaz
A API fornece dados detalhados para cada pacote, incluindo taxas de utilização de volume e pesos. Os usuários podem analisar essas informações para avaliar a eficiência de embalagem e fazer os ajustes necessários
Se um pedido de embalagem não puder ser atendido devido a restrições, a API pode retornar resultados parciais ou indicar quais itens não puderam ser embalados. Os usuários podem então ajustar seus parâmetros ou seleções de itens conforme necessário
A API otimiza materiais de embalagem com base nas dimensões dos itens, pesos e orientações, recomendando as opções mais econômicas Isso minimiza o desperdício e reduz os custos overall de embalagem nas operações logísticas
Nível de serviço:
100%
Tempo de resposta:
448ms
Nível de serviço:
100%
Tempo de resposta:
2.202ms
Nível de serviço:
100%
Tempo de resposta:
372ms
Nível de serviço:
100%
Tempo de resposta:
606ms
Nível de serviço:
100%
Tempo de resposta:
28ms
Nível de serviço:
100%
Tempo de resposta:
172ms
Nível de serviço:
100%
Tempo de resposta:
312ms
Nível de serviço:
100%
Tempo de resposta:
2.216ms
Nível de serviço:
100%
Tempo de resposta:
368ms
Nível de serviço:
100%
Tempo de resposta:
434ms