UGC Content GeneratorUGC videos and photos from product to post
Product Spec Sheet
Multi-angle product spec sheets from a single photo
Generate a product spec sheet from a single photo. Creates 6 angle views (front, back, left, right, top, 3/4) and composes them into a professional grid image. One skill: generate_spec_sheet. ~30-60s async.
Generate Spec Sheet
Generate a multi-angle product spec sheet from a single photo. Creates 6 views (front, back, left, right, top, 3/4) and composes them into a professional grid image. ⏱ Takes ~30-60 seconds. Runs asynchronously — returns a job_id, poll with get_job_result until complete.
Returns: Composed spec sheet image with 6 angle views, individual view URLs, and download page
Parameters
image_url *stringURL of the product photo. Must be publicly accessible. The tool server CAN fetch any public URL — always pass it.
product_namestringProduct name — displayed as a title on the composed spec sheet.
backgroundstringBackground style for generated views (e.g. "clean white studio background", "light gray gradient"). Defaults to white.
grid_layoutstringGrid arrangement for the composed sheet. Defaults to 3x2 (3 columns, 2 rows).
modelstringModel override. Defaults to Nano Banana 2 Edit. See generate-image list_models for options.
Example
Generate a spec sheet from a product photo
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-spec-sheet",
"skill": "generate_spec_sheet",
"input": {
"image_url": "https://example.com/product.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callList Models
List available models for this tool, sorted by popularity.
Returns: List of available models with pricing and provider info
Parameters
capabilitystringFilter by capability (e.g. text-to-image, editing).
Example
List all available image models
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "product-spec-sheet",
"skill": "list_models",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
MCP (Claude Code)
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpREST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"product-spec-sheet","skill":"generate_spec_sheet","input":{}}' \
https://api.toolrouter.com/v1/tools/call