DeepCut Studio API

Simple REST API for AI product image generation.


POST /api/analyze

Analyze product requirements and generate prompt.

curl -X POST https://deepcutapi.com/api/analyze \
  -H "Content-Type: application/json" \
  -d '{"category":"electronics","platform":"amazon"}'

POST /api/generate

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}'

GET /api/history/list

List generation history.

curl https://deepcutapi.com/api/history/list?page=1&limit=10

GET /api/health

Server health check.

curl https://deepcutapi.com/api/health

More docs coming soon.