Simple REST API for AI product image generation.
Analyze product requirements and generate prompt.
curl -X POST https://deepcutapi.com/api/analyze \
-H "Content-Type: application/json" \
-d '{"category":"electronics","platform":"amazon"}'
Generate product images from prompt.
curl -X POST https://deepcutapi.com/api/generate \
-H "Content-Type: application/json" \
-d '{"product":"earbuds","prompt":"white background","count":1}'
List generation history.
curl https://deepcutapi.com/api/history/list?page=1&limit=10
Server health check.
curl https://deepcutapi.com/api/health
More docs coming soon.