>_
SudoMock
Use Case

Packaging Mockup API

Create professional product packaging mockups. Boxes, bags, bottles, labels, and custom packaging via REST API.

<1s
Per mockup
$0.002
Per render
Smart Objects
99.9%
Uptime

Packaging Categories

Packaging mockups are essential for brand presentations, e-commerce listings, and client approvals. SudoMock handles complex multi-surface packaging with unlimited Smart Objects per template — front panel, side panel, top, label, everything.

Product Boxes

Mailer boxes, retail packaging, gift boxes with multiple Smart Objects.

Bottles & Jars

Cosmetic bottles, food jars, beverage containers with wrap labels.

Pouches & Bags

Stand-up pouches, paper bags, and flexible packaging.

Labels & Stickers

Product labels, shipping labels, and brand stickers.

Tubes & Containers

Cosmetic tubes, lip balm, and cylindrical packaging.

Food Packaging

Coffee bags, snack packaging, and food containers.

Multi-Surface Packaging

Complex packaging often needs multiple design elements — front label, back panel, side info, and cap/closure. SudoMock lets you target each Smart Object individually.

Multi-Surface Packaging Mockup
1
// Multi-surface packaging mockup (e.g., product box)
2
const response = await fetch("https://api.sudomock.com/api/v1/renders", {
3
method: "POST",
4
headers: {
5
"X-API-KEY": process.env.SUDOMOCK_API_KEY,
6
"Content-Type": "application/json"
7
},
8
body: JSON.stringify({
9
mockup_uuid: "product-box-template",
10
smart_objects: [
11
{
12
uuid: "front-panel",
13
asset: { url: "https://cdn.example.com/front.png", fit: "fill" }
14
},
15
{
16
uuid: "side-panel-left",
17
asset: { url: "https://cdn.example.com/side-left.png", fit: "fill" }
18
},
19
{
20
uuid: "side-panel-right",
21
asset: { url: "https://cdn.example.com/side-right.png", fit: "fill" }
22
},
23
{
24
uuid: "top-panel",
25
asset: { url: "https://cdn.example.com/top.png", fit: "fill" }
26
}
27
],
28
export_options: {
29
image_format: "png", // PNG for transparency if needed
30
image_size: 3000,
31
quality: 100
32
}
33
})
34
});
35
36
const { data } = await response.json();
37
console.log("Packaging mockup:", data.print_files[0].export_path);

For Agencies

Packaging mockups are perfect for client presentations. Generate multiple variations (different colors, label designs) in seconds and present options without manual work.

Color Variations

Use the color overlay feature to generate packaging in different colors without creating separate templates.

Dynamic Packaging Color
1
{
2
"mockup_uuid": "bottle-white-base",
3
"smart_objects": [
4
{
5
"uuid": "bottle-body",
6
"color": {
7
"hex": "#2E4057",
8
"blending_mode": "multiply"
9
}
10
},
11
{
12
"uuid": "label-area",
13
"asset": { "url": "https://cdn.example.com/label.png" }
14
}
15
]
16
}

Create Packaging Mockups

500 free API credits. Complex multi-surface packaging in under 1 second.