> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bitstudio.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Try on multiple items

> Combine two to four different garments in a single V6 try-on.

Use **V6** to dress a person in up to **four items** at once. Send the person photo and one outfit array containing each item. The shape is the same as a single-item request.

```bash theme={null}
curl https://api.bitstudio.ai/v1/images/virtual-try-on \
  -H "Authorization: Bearer $BITSTUDIO_API_KEY" \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: complete-outfit-001' \
  -d '{
    "person_image_url": "https://your-cdn.example/person.jpg",
    "outfit_image_urls": [
      "https://your-cdn.example/shirt.jpg",
      "https://your-cdn.example/trousers.jpg",
      "https://your-cdn.example/jacket.jpg"
    ],
    "prompt": "Wear the jacket open over the shirt.",
    "num_images": 1
  }'
```

Replace the example URLs with direct image files you control. This creates **one output with three garments**. Setting `num_images: 2` requests two result images, each showing the same three-item outfit; each result has its own job.

## Choose one reference format

| Your inputs               | Field               |
| ------------------------- | ------------------- |
| Direct garment image URLs | `outfit_image_urls` |
| Uploaded garment images   | `outfit_image_ids`  |
| Saved wardrobe products   | `outfit_asset_ids`  |

Use one of these arrays per request. To combine inputs that currently have different formats, upload the URL images first or save all items as outfit assets. Each array entry represents one item. Front and back photos of the same garment belong in one asset, rather than being separate outfit items.

Choose compatible layers, such as a shirt, trousers, and jacket. A prompt can clarify how to wear them, but does not guarantee exact layering or garment reproduction. Inspect each result for logos, prints, seams, colour, fit, and occluded details.

The four-item limit applies to V6. Explicitly choosing an older model can reduce the supported number of items.

[Quality and results →](/api-reference/try-on/quality) · [Full request reference →](/api-reference/operations/virtual-try-on)
