Loading...
Loading...
Generate professional e-commerce product photography and videos using EachLabs AI models. Product shots, background replacement, lifestyle scenes, and 360-degree views. Use when the user needs product images for e-commerce or marketing.
npx skill4agent add eachlabs/skills eachlabs-product-visualsHeader: X-API-Key: <your-api-key>EACHLABS_API_KEY| Task | Model | Slug |
|---|---|---|
| Product photoshoot | Product to Photoshoot | |
| Product on model | Product Photo to Modelshoot | |
| Color variations | Product Colors | |
| Food photography | Food Photos | |
| Background removal | Product Background Remover | |
| Image upscaling | Product Photo Upscaler | |
| Home scene placement | Product Home View | |
| Product shot | Bria Product Shot | |
| Product shoot | Product Shoot | |
| Product arc shot | Eachlabs Product Arc Shot | |
| Product zoom in | Eachlabs Product Zoom In | |
| Task | Model | Slug |
|---|---|---|
| Product photography | GPT Image v1.5 | |
| Background replacement | GPT Image v1.5 Edit | |
| Product editing | Flux 2 Turbo Edit | |
| Multi-angle views | Qwen Image Edit | |
| Background removal | Rembg Enhance | |
| Background removal | Eachlabs BG Remover | |
| Image upscaling | Eachlabs Upscaler Pro | |
| Ad inpainting | SDXL Ad Inpaint | |
| Custom product style | Z Image Trainer | |
| Product video | Pixverse v5.6 Image-to-Video | |
GET https://api.eachlabs.ai/v1/model?slug=<slug>request_schemahttps://api.eachlabs.ai/v1/prediction"0.0.1"GET https://api.eachlabs.ai/v1/prediction/{id}"success""failed"curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gpt-image-v1-5-edit",
"version": "0.0.1",
"input": {
"prompt": "Place this product on a clean white background with soft studio lighting and subtle shadows",
"image_urls": ["https://example.com/product.jpg"],
"background": "opaque",
"quality": "high"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gpt-image-v1-5-edit",
"version": "0.0.1",
"input": {
"prompt": "Place this coffee mug on a cozy wooden desk in a modern home office with warm morning light, lifestyle photography",
"image_urls": ["https://example.com/mug.jpg"],
"quality": "high"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "qwen-image-edit-2511-multiple-angles",
"version": "0.0.1",
"input": {
"image_urls": ["https://example.com/product.jpg"],
"horizontal_angle": 45,
"vertical_angle": 15,
"zoom": 5
}
}'horizontal_anglecurl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "gpt-image-v1-5-edit",
"version": "0.0.1",
"input": {
"prompt": "Remove the background from this product image",
"image_urls": ["https://example.com/product.jpg"],
"background": "transparent",
"output_format": "png"
}
}'curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-6-image-to-video",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/product-studio.jpg",
"prompt": "Slow cinematic camera rotation around the product with dramatic studio lighting",
"duration": "5",
"resolution": "1080p"
}
}'