latestOpenAPI 3.0.22026-08-21134292561.4 KB
898026c78d68
images-generate
Generate images with P-Image Ideogram from a text or structured prompt
Generate one or more images with P-Image Ideogram, a fast model with selectable quality and resolution tiers. The prompt accepts either natural language or a structured Ideogram 4.0 JSON prompt; the server detects which was supplied.
By default the request blocks until the images are ready and returns them in data. Set async to true to return immediately after the request is accepted, then poll for completion and results with GET /v1/generations/{generation_id} using the returned generation_id.
post/v2/images/generate/p-image-ideogram
Request body
Example request
{
"magic_prompt": "",
"aspect_ratio": "",
"custom_height": 1,
"async": false,
"seed": 12345,
"custom_width": 6,
"enable_copyright_detection": true,
"prompt": "prompt",
"resolution": "1K",
"num_images": 1,
"quality": ""
}Response
The generated images (synchronous requests), or an acknowledgement to poll with GET /v1/generations/{generation_id} (async requests).
Example response
{
"data": [
{
"seed": 12345,
"prompt": "prompt",
"resolution": "1024x1024",
"url": "https://openapi-generator.tech",
"is_image_safe": true
},
{
"seed": 12345,
"prompt": "prompt",
"resolution": "1024x1024",
"url": "https://openapi-generator.tech",
"is_image_safe": true
}
],
"seed": 12345,
"generation_id": "generation_id"
}