Ideogram V3 Balanced delivers the highest-quality image generation with stunning realism, creative design, and consistent styles. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle

$0.06per run·~16 / $1

beautiful bauhaus stark typographic poster saying "Ideogram v3 on WaveSpeedAI", pink and gold

a photo of a puppy holding a sign that says "Ideogram v3 balanced"

High fashion model posing in a minimalist studio, dramatic shadow play, sharp cheekbones, avant-garde makeup, Vogue editorial style, high resolution

Street style portrait of a Gen Z fashion influencer in oversized jacket and sneakers, urban background, natural light, detailed facial expression and accessories

Teenage girl in a school uniform standing on a rainy street in Tokyo, neon reflections on the ground, umbrella in hand, captured with shallow depth of field

A whimsical forest filled with glowing mushrooms and fairy lights, magical creatures hiding behind trees, dreamy pastel colors, Studio Ghibli-inspired style

A cute yellow dinosaur wearing sunglasses and a red cap, standing on a skateboard, cartoon style, clean vector lines, white background

A floating island with waterfalls cascading into the clouds, vibrant sky, magical atmosphere, fantasy

A dragon made of living vines and flowers, glowing eyes, perched on a cliff at sunrise, detailed fantasy concept art

Snowy village at night with glowing lanterns, smoke coming from chimneys, peaceful and nostalgic, semi-realistic illustration
Generate high-quality images with exceptional typography using Ideogram V3 Balanced. This versatile model offers the optimal balance between speed, quality, and cost — perfect for everyday design work, marketing materials, and professional content creation.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image you want to generate. |
| image | No | Source image for editing (upload or public URL). |
| mask_image | No | Mask to specify edit regions — white areas will be regenerated. |
| style | No | Output style: Auto, General, Realistic, or Design. Default: Auto. |
| aspect_ratio | No | Output format: 1:1, 16:9, 9:16, 4:3, or 3:4. Default: 1:1. |
| reference_images | No | Up to 3 reference images to guide style and composition. |
| enable_base64_output | No | API only: Returns base64 string instead of URL. |
| Enable Safety Checker | No | Toggle content safety filtering. |
Flat rate per image generation.
| Output | Cost |
|---|---|
| Per image | $0.06 |
| Style | Description | Best For |
|---|---|---|
| Auto | Automatically selects the best style | General use, when unsure |
| General | Balanced, versatile output | Wide range of subjects |
| Realistic | Photorealistic, natural appearance | Photos, portraits, products |
| Design | Graphic design aesthetic | Posters, logos, marketing materials |
| Model | Cost | Speed | Quality | Best For |
|---|---|---|---|---|
| Ideogram V3 Turbo | $0.03 | Fastest | Good | Rapid iteration, testing |
| Ideogram V3 Balanced | $0.06 | Medium | Better | Everyday production work |
| Ideogram V3 Quality | $0.09 | Standard | Best | Final deliverables, print |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v3-balanced 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 v3 Balanced below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v3-balanced" \
-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-v3-balanced", {
"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-v3-balanced",
{
"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 v3 Balanced is a Ideogram model for image generation, exposed as a REST API on WaveSpeedAI. Ideogram V3 Balanced delivers the highest-quality image generation with stunning realism, creative design, and consistent styles. 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-v3-balanced.
Ideogram v3 Balanced starts at $0.060 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`, `reference_images`, `enable_base64_output`, `mask_image`. 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-v3-balanced.
Average end-to-end generation time on WaveSpeedAI is around 10 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.