Product Studio
AI product photography and editing suite
All-in-one AI photo studio for e-commerce and marketing. Studio shots, lifestyle scenes, ghost mannequins, flat lays, object removal, shadows, wrinkle removal, recoloring, background blur, image expansion, and freeform AI edits. Turn any phone photo into professional product photography.
Place a product on a clean background with professional studio lighting and shadows. The core e-commerce product photo.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "studio_shot",
"input": {
"image_url": "https://example.com/raw-product.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callPlace a product in a real-world scene — kitchen counter, office desk, outdoor setting. Creates contextual lifestyle photography.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "lifestyle_shot",
"input": {
"image_url": "https://example.com/mug.jpg",
"scene": "marble kitchen counter next to a coffee machine, morning light"
}
}' \
https://api.toolrouter.com/v1/tools/callRemove the mannequin or model from clothing photos to create a hollow-man effect. The garment appears to float with its 3D shape preserved.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "ghost_mannequin",
"input": {
"image_url": "https://example.com/jacket-on-mannequin.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callCreate a top-down flat lay arrangement of a product. Styled overhead photography for social media and catalogs.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "flat_lay",
"input": {
"image_url": "https://example.com/serum.jpg",
"surface": "white marble slab",
"props": "dried lavender sprigs and a small towel"
}
}' \
https://api.toolrouter.com/v1/tools/callRemove unwanted objects, people, or distractions from product photos. Describe what to remove and the area is filled naturally.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "remove_object",
"input": {
"image_url": "https://example.com/product-with-people.jpg",
"remove": "the people in the background"
}
}' \
https://api.toolrouter.com/v1/tools/callEnhance a product photo to studio-grade quality. Improves lighting, sharpness, colors, and overall appeal without changing the composition.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "beautify",
"input": {
"image_url": "https://example.com/raw-phone-photo.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callAdd realistic drop shadows or contact shadows beneath a product. Makes products on flat backgrounds look grounded and natural.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "add_shadows",
"input": {
"image_url": "https://example.com/product-no-shadow.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callRemove wrinkles and creases from clothing photos. The fabric looks freshly pressed while keeping shape, color, and pattern intact.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "unwrinkle",
"input": {
"image_url": "https://example.com/wrinkled-shirt.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callChange the color of a product or garment. Generate color variants without reshooting. Keeps shape, texture, and details identical.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "recolor",
"input": {
"image_url": "https://example.com/red-dress.jpg",
"color": "navy blue"
}
}' \
https://api.toolrouter.com/v1/tools/callApply a depth-of-field blur to the background while keeping the product sharp. Creates a professional bokeh effect.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "blur_background",
"input": {
"image_url": "https://example.com/product-busy-bg.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callExpand an image to a new aspect ratio by AI-generating the missing background. Outpainting that seamlessly extends the scene.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "resize_expand",
"input": {
"image_url": "https://example.com/product-portrait.jpg",
"target_ratio": "16:9"
}
}' \
https://api.toolrouter.com/v1/tools/callFreeform AI editing — describe any edit in natural language and it gets applied. The catch-all for edits not covered by other skills.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-studio",
"skill": "ai_edit",
"input": {
"image_url": "https://example.com/candle.jpg",
"edit": "Add pine branches and small red berries around the candle for a Christmas theme"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"product-studio","skill":"studio_shot","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
Which skill should I use for a clean product listing photo?
`studio_shot` is the default for a clean background, while `beautify` helps upgrade a real phone photo without changing the composition.
Can you make lifestyle scenes or clothing mockups?
Yes. `lifestyle_shot` places products in context, `ghost_mannequin` removes mannequins from clothing, and `flat_lay` builds overhead layouts.
Can I clean up the image or create variants without reshooting?
Use `remove_object`, `add_shadows`, `unwrinkle`, `recolor`, `blur_background`, or `resize_expand` depending on the edit you need.
Can I describe a custom edit in plain language?
`ai_edit` is the catch-all when the change does not fit a dedicated skill.