Ideogram v2 turbo is an image model that excels at inpainting, prompt comprehension, and accurate on-image text rendering. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.05per run·~20 / $1

A beautiful typographic poster with the text "Run Ideogram on WaveSpeedAI", against an epic space scene

A beautiful typographic poster with the text "Run Ideogram on WaveSpeedAI", against an epic space scene

Young man sitting alone in a dimly lit room with window blinds casting shadows on his face, contemplative expression, detailed emotion, cinematic noir style

Woman in a flowing dress dancing in a swirl of paint and color, abstract brush strokes, expressive movement, vibrant tones, artistic composition

Portrait of a man whose face is morphing into geometric shapes and fractals, modern art inspired, clean color contrast, crisp and high-resolution details

Space explorer removing helmet on an alien planet, galaxy sky background, reflective suit, high-tech interface overlay, intense lighting and detail

A vibrant and delicious-looking flat lay photo for a food blog. A rustic ceramic bowl is filled with a colorful quinoa salad, topped with avocado slices, cherry tomatoes, and feta cheese. Around the bowl are fresh ingredients like a lemon and a sprig of cilantro. The title 'WavespeedAI' is written on a piece of parchment paper next to the bowl. photo, food photography, top-down view, bright and airy.

A candid photograph of a young woman in her early 20s sitting in a cozy, sun-drenched coffee shop. She has a natural, gentle smile as she looks out the window. She is wearing a simple knitted sweater. Soft morning light illuminates the fine details of her face, including light freckles across her nose. Shot on a 50mm f/1.4 lens, shallow depth of field, photorealistic.

A close-up photograph of a 6-year-old girl with bright, curious eyes, laughing heartily. She has messy blonde hair with a few wildflowers tucked into it. The photo is taken outdoors during the golden hour, with warm, golden sunlight backlighting her hair, creating a beautiful halo effect. Extremely detailed, sharp focus on her eyes, joyful, photorealistic.

An environmental portrait of a university professor in his 50s, sitting in a classic, grand library surrounded by old books. He is wearing tweed jacket and glasses, looking thoughtfully at a book in his hands. The room is filled with warm, ambient light from desk lamps. The atmosphere is quiet and intellectual. Photograph, cinematic, realistic.
Ideogram V2 Turbo is a powerful text-to-image generation model renowned for its exceptional ability to render text within images. Generate stunning visuals with accurate, readable text — perfect for posters, logos, typography, and designs that require precise text integration.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image you want to generate. |
| image | No | Source image for image-to-image transformation. |
| mask_image | No | Mask for inpainting (white = generate, black = preserve). |
| style | No | Style preset: Auto or specific styles (default: Auto). |
| aspect_ratio | No | Output aspect ratio: 16:9, 1:1, 9:16, etc. (default: 16:9). |
| enable_base64_output | No | Return base64 string instead of URL (API only). |
Text-to-Image:
Image-to-Image:
Inpainting:
| Output | Price |
|---|---|
| Per image | $0.05 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v2-turbo 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 v2 Turbo below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v2-turbo" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"style": "Auto",
"aspect_ratio": "1:1",
"enable_base64_output": false
}'
# 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-v2-turbo", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"style": "Auto",
"aspect_ratio": "1:1",
"enable_base64_output": false
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"ideogram-ai/ideogram-v2-turbo",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"style": "Auto",
"aspect_ratio": "1:1",
"enable_base64_output": false
}
)
print(output["outputs"][0]) # → URL of the generated outputIdeogram v2 Turbo is a Ideogram model for image generation, exposed as a REST API on WaveSpeedAI. Ideogram v2 turbo is an image model that excels at inpainting, prompt comprehension, and accurate on-image text rendering. Ready-to-use REST inference API, best performance, no coldstarts, 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-v2-turbo.
Ideogram v2 Turbo starts at $0.050 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`, `image`, `aspect_ratio`, `enable_base64_output`, `mask_image`, `style`. 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-v2-turbo.
Average end-to-end generation time on WaveSpeedAI is around 14 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
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.