Ideogram API · Capability

Reframe

Extend or adapt an image to a new resolution so a single piece of creative can move between ads, posts, banners, and product surfaces.

POST /v1/ideogram-v3/reframe

Examples

Each call takes a request and returns a hosted image URL you can route into your product.

Request
Input
A square photo of a tree on a hill
POST /v1/ideogram-v3/reframe { "image": "hill.jpg" , "resolution": "2560x1440" }
Response 200
Output
The scene extended to a wide 16:9 frame
{ "created": "2026-06-02T16:24:11Z", "data": [ { "url": "https://api.ideogram.ai/images/ephemeral/…-reframe.png" , "resolution": "2560x1440" , "is_image_safe": true } ] }
Request
Input
A square photo of a lighthouse on a cliff
POST /v1/ideogram-v3/reframe { "image": "lighthouse.jpg" , "resolution": "832x1248" }
Response 200
Output
The lighthouse extended to a tall portrait frame
{ "created": "2026-06-02T16:24:11Z", "data": [ { "url": "https://api.ideogram.ai/images/ephemeral/…-reframe.png" , "resolution": "832x1248" , "is_image_safe": true } ] }

More capabilities

Back to the API overview