>_
SudoMock
Use Case

Fashion Lookbook Automation

Generate fashion catalogs and lookbooks at scale. Model shots, flat lays, and lifestyle imagery via API.

<1s
Per image
$0.002
Per render
Model
Shots
99.9%
Uptime

Lookbook Image Types

Fashion brands need consistent, high-quality imagery across their catalog. SudoMock handles the mockup generation for model shots, ghost mannequin images, flat lays, and lifestyle settings — all from PSD templates you control.

Model Photography

Composite designs onto model shots with precise Smart Object placement.

Ghost Mannequin

Invisible mannequin effect for clean product-focused shots.

Flat Lay

Top-down product shots with styled accessories.

Lifestyle Scenes

Products in context — urban, outdoor, studio environments.

Lookbook Generation

Lookbook Set Generation
1// Generate lookbook images for a clothing collection
2const LOOKBOOK_TEMPLATES = {
3 model_front: "fashion-model-front-uuid",
4 model_side: "fashion-model-side-uuid",
5 flatlay_styled: "fashion-flatlay-uuid",
6 ghost_mannequin: "fashion-ghost-uuid",
7 lifestyle_urban: "fashion-lifestyle-uuid"
8};
9
10async function generateLookbookSet(designUrl, garmentType = "tshirt") {
11 const templates = Object.entries(LOOKBOOK_TEMPLATES);
12
13 const images = await Promise.all(
14 templates.map(async ([view, templateId]) => {
15 const response = await fetch("https://api.sudomock.com/api/v1/renders", {
16 method: "POST",
17 headers: {
18 "X-API-KEY": process.env.SUDOMOCK_API_KEY,
19 "Content-Type": "application/json"
20 },
21 body: JSON.stringify({
22 mockup_uuid: templateId,
23 smart_objects: [{
24 uuid: "design-area",
25 asset: { url: designUrl, fit: "contain" }
26 }],
27 export_options: {
28 image_format: "jpeg",
29 image_size: 3000,
30 quality: 95
31 }
32 })
33 });
34
35 const data = await response.json();
36 return { view, url: data.data.print_files[0].export_path };
37 })
38 );
39
40 return images;
41}
42
43// Generate complete lookbook set
44const lookbook = await generateLookbookSet("https://cdn.example.com/design.png");
45// Returns: [{ view: "model_front", url: "..." }, ...]

For Fashion Brands

Create once, render infinitely. Design your model shot templates with the design placement as Smart Objects. New collection drops become automated catalog updates.

Automate Your Fashion Catalog

500 free API credits. Professional lookbook imagery in milliseconds.