POST
/
ideogram
/
reframe
curl -X POST https://api.example.com/ideogram/reframe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/original.png",
    "aspect_ratio": "16:9"
  }'
Reframe images and expand the canvas using the Ideogram Generate 3.0 model.

Request Parameters

image
string
required
Original image.
aspect_ratio
string
required
Target aspect ratio.
prompt
string
Description for the expanded area.
curl -X POST https://api.example.com/ideogram/reframe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "image": "https://example.com/original.png",
    "aspect_ratio": "16:9"
  }'