POST
/
ideogram
/
remix
curl -X POST https://api.example.com/ideogram/remix \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/reference.png",
    "prompt": "Same scene but in winter",
    "image_weight": 0.7
  }'
Remix images using the Ideogram Generate 3.0 model.

Request Parameters

image
string
required
Reference image.
prompt
string
required
New prompt.
image_weight
number
Image weight (0-1).
curl -X POST https://api.example.com/ideogram/remix \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/reference.png",
    "prompt": "Same scene but in winter",
    "image_weight": 0.7
  }'