Skip to content

Ideogram

Mode: image · Models: 3

Vendor: Ideogram · Official API docs: Ideogram API Reference

Ideogram v3 is a text-to-image model known for strong typography and in-image text rendering, with selectable rendering speeds and styles. Ideogram Character is the image-to-image variant that carries a reference subject across generations.

Models

idNameInput type
ideogram-v3Ideogram v3t2i
ideogram-characterIdeogram Characteri2i
ideogram-v4Ideogram 4.0t2i

CLI

bash
# text-to-image with typography focus
gen-ai generate -m ideogram-v3 \
  -p "vintage travel poster reading VISIT MARS, bold serif title, warm palette" \
  --ar 3:4 --rendering-speed QUALITY --style DESIGN -n 4

# character: carry a reference subject across a new scene
gen-ai generate -m ideogram-character \
  -p "the same character as a knight in a misty forest" \
  -i ./character.jpg

MCP

json
{ "name": "picsart_generate",
  "arguments": {
    "model": "ideogram-v3",
    "prompt": "vintage travel poster reading VISIT MARS, bold serif title",
    "aspectRatio": "3:4",
    "renderingSpeed": "QUALITY",
    "style": "DESIGN",
    "count": 4
  } }
json
{ "name": "picsart_generate",
  "arguments": {
    "model": "ideogram-character",
    "prompt": "the same character as a knight in a misty forest",
    "imageUrls": ["https://example.com/character.jpg"]
  } }

Parameters

Full parameter surface for every model, sourced from gen-ai models info <id> --json. CLI flags show the primary short form; the canonical --kebab-case long form always works too.

ideogram-v3 — Ideogram v3

Try ideogram-v3 in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
prompt-ptextrequired
aspectRatio--arenum16:9 · 9:16 · 1:1 · 3:4 · 4:3 (default 16:9)
renderingSpeed--speedenumFLASH (Flash) · TURBO (Turbo) · DEFAULT (Balanced) · QUALITY (Quality) (default DEFAULT)
style--styleenumGENERAL (General) · REALISTIC (Realistic) · DESIGN (Design) (default GENERAL)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
negativePrompt--negtextfree text
imageUrls-ifileimage (up to 1)
imageWeight--weightinteger1100, step 5, default 50

ideogram-character — Ideogram Character

Try ideogram-character in Playground ↗

Input type: i2i

ParamCLI flagTypeValues
resolution-renum1024x1024 · 1344x768 · 768x1344 · 1152x864 · 864x1152 · 832x1248 · 1280x800 (default 1024x1024)
renderingSpeed--speedenumTURBO (Turbo) · DEFAULT (Balanced) · QUALITY (Quality) (default DEFAULT)
style--styleenumAUTO (Auto) · REALISTIC (Realistic) · FICTION (Fiction) (default AUTO)
count-nenum1 · 2 · 4 · 6 · 8 · 10 (default 1)
imageUrls-ifilerequired image (up to 1)

Notes: ideogram-character uses a reference image (imageUrls) to lock the subject’s identity.

ideogram-v4 — Ideogram 4.0

Try ideogram-v4 in Playground ↗

Input type: t2i

ParamCLI flagTypeValues
prompt-ptextrequired
resolution-renum2048x2048 · 1440x2880 · 2880x1440 · 1664x2496 · 2496x1664 · 1792x2240 · 2240x1792 · 1440x2560 · 2560x1440 · 1600x2560 · 2560x1600 · 1728x2304 · 2304x1728 · 1296x3168 · 3168x1296 · 1152x2944 · 2944x1152 · 1248x3328 · 3328x1248 · 1280x3072 · 3072x1280 (default 2048x2048)
renderingSpeed--speedenumTURBO (Turbo) · DEFAULT (Balanced) · QUALITY (Quality) (default DEFAULT)
enableCopyrightDetection--enable-copyright-detectionbooleantrue · false (default false)

Pricing

bash
gen-ai pricing ideogram-v3 -n 4 --rendering-speed QUALITY

Cost scales with count (number of images) and rendering speed (FLASH/TURBO are cheaper, QUALITY is the most expensive).

Built on @picsart/ai-sdk · gen-ai CLI · Picsart MCP · Skills