Product Shoot
Generate professional product photography using AI. Upload up to 2 product images and provide a text prompt to create studio-quality product shots with customizable aspect ratios, perfect for e-commerce and marketing.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "product-shoot",
"version": "0.0.1",
"input": {
"input_image_1": "https://example.com/sneaker.jpg",
"prompt": "Premium sneaker on a marble surface with dramatic studio lighting, clean white background, commercial product photography",
"aspect_ratio": "1:1"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
| aspect_ratio |
string |
match_input_image |
Output aspect ratio. Options: match_input_image, 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 4:5, 5:4, 21:9, 9:21, 2:1, 1:2 |
| input_image_1 |
string |
- |
First input image. Must be jpeg, png, gif, or webp |
| input_image_2 |
string |
- |
Second input image. Must be jpeg, png, gif, or webp |
| prompt |
string |
- |
Text prompt describing the desired product shot |
Examples
E-commerce product shot:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "product-shoot",
"version": "0.0.1",
"input": {
"input_image_1": "https://example.com/perfume-bottle.jpg",
"prompt": "Luxury perfume bottle on a reflective black surface with golden bokeh lights in the background, premium product photography",
"aspect_ratio": "4:5"
}
}'
Product with lifestyle context:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "product-shoot",
"version": "0.0.1",
"input": {
"input_image_1": "https://example.com/coffee-mug.jpg",
"input_image_2": "https://example.com/coffee-beans.jpg",
"prompt": "Artisan coffee mug next to fresh coffee beans on a rustic wooden table, warm morning light streaming through a window, cozy atmosphere",
"aspect_ratio": "16:9"
}
}'
Related Models
Documentation
1---2name: product-shoot3description: Product Shoot. Generate professional product photography using AI. Create studio-quality product images from reference photos and text prompts. Triggers: product photography, product shoot, product photo, ai product image, commercial photography, product visualization, e-commerce photo4---56# Product Shoot78Generate professional product photography using AI. Upload up to 2 product images and provide a text prompt to create studio-quality product shots with customizable aspect ratios, perfect for e-commerce and marketing.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "product-shoot",20 "version": "0.0.1",21 "input": {22 "input_image_1": "https://example.com/sneaker.jpg",23 "prompt": "Premium sneaker on a marble surface with dramatic studio lighting, clean white background, commercial product photography",24 "aspect_ratio": "1:1"25 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| aspect_ratio | string | match_input_image | Output aspect ratio. Options: `match_input_image`, `1:1`, `16:9`, `9:16`, `4:3`, `3:4`, `3:2`, `2:3`, `4:5`, `5:4`, `21:9`, `9:21`, `2:1`, `1:2` |34| input_image_1 | string | - | First input image. Must be jpeg, png, gif, or webp |35| input_image_2 | string | - | Second input image. Must be jpeg, png, gif, or webp |36| prompt | string | - | Text prompt describing the desired product shot |3738## Examples3940**E-commerce product shot:**41```bash42curl -X POST https://api.eachlabs.ai/v1/prediction \43 -H "Content-Type: application/json" \44 -H "X-API-Key: $EACHLABS_API_KEY" \45 -d '{46 "model": "product-shoot",47 "version": "0.0.1",48 "input": {49 "input_image_1": "https://example.com/perfume-bottle.jpg",50 "prompt": "Luxury perfume bottle on a reflective black surface with golden bokeh lights in the background, premium product photography",51 "aspect_ratio": "4:5"52 }53 }'54```5556**Product with lifestyle context:**57```bash58curl -X POST https://api.eachlabs.ai/v1/prediction \59 -H "Content-Type: application/json" \60 -H "X-API-Key: $EACHLABS_API_KEY" \61 -d '{62 "model": "product-shoot",63 "version": "0.0.1",64 "input": {65 "input_image_1": "https://example.com/coffee-mug.jpg",66 "input_image_2": "https://example.com/coffee-beans.jpg",67 "prompt": "Artisan coffee mug next to fresh coffee beans on a rustic wooden table, warm morning light streaming through a window, cozy atmosphere",68 "aspect_ratio": "16:9"69 }70 }'71```7273## Related Models7475- [Eachlabs Product Arc Shot | v1](../eachlabs-product-arc-shot-v1/) - Product arc shot videos76- [Eachlabs Background Remover v1](../eachlabs-bg-remover-v1/) - Remove image backgrounds77- [Flux.1 Kontext | Pro](../flux-kontext-pro/) - AI image editing7879## Documentation8081- [each::labs Docs](https://docs.eachlabs.ai)82- [API Reference](https://docs.eachlabs.ai/api/overview)