Skip to main content

Try Ideogram V4 in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: ideogram-v4 Ideogram V4 (V4.0q) is a text-to-image model from Ideogram, served through Fal. It generates high-quality images, posters, and logos with crisp visuals, fine detail, and full creative control for polished, ready-to-use designs. Typography and graphic design are Ideogram V4’s strongest capabilities. It renders dense, accurate text that reads cleanly on posters, packaging, and brand work, including logos, multi-font layouts, long-form text, and creative typography integrated naturally into the design rather than pasted on top. The model was trained with bounding boxes tied to region descriptions, so it understands where every object, text region, and layout element belongs, enabling fine-grained control over composition. Beyond design, Ideogram V4 delivers strong realism and broad artistic range. It renders in native 2K resolution with the fine texture and natural imperfections that separate a real photograph from an AI-generated image, supports native background transparency, and offers multiple quality tiers (Turbo, Balanced, Quality) so you can choose the right balance of speed and fidelity for drafts, iteration, or final output.

Example request

Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
See the image generation reference for more details.
curl -X POST https://hub.oxen.ai/api/ai/images/generate \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OXEN_API_KEY" \
  -d '{
  "model": "ideogram-v4",
  "prompt": "A red panda perched on a mossy branch in a misty forest at sunrise"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/ideogram-v4

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstring"A red panda perched on a mossy branch in a misty forest at sunrise"The prompt to generate an image from.

Optional parameters

FieldTypeDefaultDescription
image_sizestring"square_hd"The resolution of the generated image. One of: square_hd, square, portrait_4_3, portrait_16_9, landscape_4_3, landscape_16_9.
rendering_speedstring"BALANCED"The rendering speed to use. Faster speeds use fewer denoising steps. One of: TURBO, BALANCED, QUALITY.
expansion_modelstring"Medium"Which model expands the prompt. ‘Medium’ is fast; ‘Large’ uses Ideogram’s Magic Prompt for the highest quality. One of: Medium, Large.
accelerationstring"none"The acceleration level to use for the image generation. One of: none, low, regular, high.
num_imagesinteger1Number of images to generate.
seedintegerThe seed to use for generation. If not provided, a random seed will be used.
enable_safety_checkerbooleantrueIf set to true, the safety checker will be enabled.
output_formatstring"jpeg"The format of the generated image. One of: jpeg, png.