Ideogram V4 Text to Image is a fast AI image generation model that creates high-quality images, posters, and logos from text prompts with crisp visuals, accurate text rendering, strong detail, and controllable rendering speed. Ready-to-use REST inference API for logo design, poster creation, marketing visuals, brand assets, social media content, typography-rich images, and professional text-to-image workflows with simple integration, no coldstarts, and affordable pricing.
En attente

$0.03par exécution·~33 / $1

A bold urban mural, "YOU ARE HERE" in oversized 3D block letters, glowing sunset gradient with turquoise accents, surrounded by blooming flowers, doves, and leafy branches flowing outward from the text, photorealistic exterior wall, mural paint texture, positive reflective message, energetic public art style
Ideogram V4 generates high-quality images from natural-language prompts with flexible aspect ratios, configurable rendering speed, and multiple output formats. It is well suited for posters, public art concepts, typography-driven visuals, product ideas, social content, and other prompt-based image generation workflows.
Strong prompt-based image generation
Turn natural-language descriptions into polished visual outputs.
Flexible aspect ratio presets
Choose a size preset that fits square, portrait, or landscape compositions.
Speed-quality tradeoff control
Use rendering_speed to balance cost, speed, and output quality.
Multiple output formats
Export generated results in formats such as jpeg.
Great for text-forward visuals
Useful for murals, signage, poster-style graphics, and other design-led imagery.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image you want to generate. |
| size | No | Output size preset, such as 1:1, 3:4, 4:3, 16:9, or 9:16. |
| rendering_speed | No | Rendering mode that controls quality and cost. Supported values include TURBO, BALANCED, and QUALITY. |
| output_format | No | Output image format, such as jpeg. |
TURBO for lower cost, BALANCED for a middle option, or QUALITY for the highest cost and quality.A bold urban mural, "YOU ARE HERE" in oversized 3D block letters, glowing sunset gradient with turquoise accents, surrounded by blooming flowers, doves, and leafy branches flowing outward from the text, photorealistic exterior wall, mural paint texture, positive reflective message, energetic public art style
Pricing depends on both rendering_speed and size.
| Rendering Speed | Cost |
|---|---|
| TURBO | $0.04 |
| BALANCED | $0.07 |
| QUALITY | $0.11 |
| Rendering Speed | Cost |
|---|---|
| TURBO | $0.03 |
| BALANCED | $0.05 |
| QUALITY | $0.08 |
| Rendering Speed | Cost |
|---|---|
| TURBO | $0.02 |
| BALANCED | $0.04 |
| QUALITY | $0.06 |
rendering_speed and size1:1 is the highest-priced size tier3:4 and 4:3 use the same price tier16:9, 9:16, 3:2, 2:3, 9:21, and 21:9 use the same price tieroutput_format does not affect pricingTURBO when you want cheaper, faster experimentation.QUALITY when the result is for final delivery or closer review.1:1 for square composition-heavy outputs and social graphics.3:4 or 4:3 for poster-like or editorial framing.16:9 or 9:16 for widescreen or vertical content.prompt is required.BALANCED is the middle pricing tier between TURBO and QUALITY.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v4 with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Ideogram v4 below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v4" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1:1",
"rendering_speed": "BALANCED",
"output_format": "jpeg"
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("ideogram-ai/ideogram-v4", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1:1",
"rendering_speed": "BALANCED",
"output_format": "jpeg"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"ideogram-ai/ideogram-v4",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"size": "1:1",
"rendering_speed": "BALANCED",
"output_format": "jpeg"
}
)
print(output["outputs"][0]) # → URL of the generated outputIdeogram v4 is a Ideogram model for image generation, exposed as a REST API on WaveSpeedAI. Ideogram V4 Text to Image is a fast AI image generation model that creates high-quality images, posters, and logos from text prompts with crisp visuals, accurate text rendering, strong detail, and controllable rendering speed. Ready-to-use REST inference API for logo design, poster creation, marketing visuals, brand assets, social media content, typography-rich images, and professional text-to-image workflows with simple integration, no coldstarts, and affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/ideogram-ai/ideogram-ai-ideogram-v4.
Ideogram v4 starts at $0.030 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `size`, `output_format`, `rendering_speed`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/ideogram-ai/ideogram-ai-ideogram-v4.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (Ideogram). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.