Skip to content
Docs menu

Image models

Ideogram V3

On this page

Ideogram V3 — fast, high-fidelity AI image generation & editing.

modelIdideogram-v3-text-to-image
Modalityimage
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationEndpointDescription
Text to imagePOST /api/v1/generateBase generation from a text prompt.
Poll taskGET /api/v1/task/{id}?model=ideogram-v3-text-to-imageRetrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
prompttextarearequiredDescribe the image you want to generate...
rendering_speedselectoptionalTURBO, BALANCED, QUALITY
styleselectoptionalAUTO, GENERAL, REALISTIC, DESIGN
expand_promptselectoptionalfalse, true
image_sizeselectoptionalsquare, square_hd, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9
seednumberoptionalEnter seed number...
negative_prompttextareaoptionalDescribe what you want to exclude from the image...
nsfw_checkerselectoptionalfalse, true

Example request

bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"ideogram-v3-text-to-image","input":{"prompt":"Vintage travel poster of a mountain railway with the headline 'TAKE THE SLOW TRAIN' in art-deco lettering, dusk palette.","rendering_speed":"BALANCED","style":"AUTO","expand_prompt":"true","image_size":"square_hd","seed":8,"negative_prompt":"…","nsfw_checker":"true"}}'