Ideogram V3 Generate Transparent creates high-quality images with transparent backgrounds from text prompts, perfect for logos, stickers, and design assets. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.
Ожидание

$0.06за запуск·~16 / $1



Ideogram V3 Generate Transparent generates high-quality images with a transparent background directly from text prompts. No manual background removal needed — the model outputs clean, isolated subjects ready for compositing, overlays, and design workflows from the start.
Native transparent background output Generates images with a clean alpha channel in a single step — no post-processing or background removal required.
Multiple rendering speed tiers Choose between flash, turbo, balanced, or quality to balance speed and output fidelity based on your workflow needs.
Flexible aspect ratios Supports multiple orientations for any platform or design format.
Strong prompt adherence Ideogram V3 delivers accurate text rendering and detailed scene composition from natural language descriptions.
Prompt Enhancer Built-in tool to automatically improve your text descriptions for richer results.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the image subject, style, and mood. |
| aspect_ratio | No | Output aspect ratio. Default: 1:1. |
| rendering_speed | No | Generation speed and quality tier: flash, turbo, balanced (default), or quality. |
| Rendering Speed | Cost per Image |
|---|---|
| flash | $0.03 |
| turbo | $0.03 |
| balanced | $0.06 |
| quality | $0.09 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v3/generate-transparent 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 Generate Transparent below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/ideogram-ai/ideogram-v3/generate-transparent" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"rendering_speed": "balanced"
}'
# 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/generate-transparent", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"rendering_speed": "balanced"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"ideogram-ai/ideogram-v3/generate-transparent",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"rendering_speed": "balanced"
}
)
print(output["outputs"][0]) # → URL of the generated outputIdeogram v3 Generate Transparent is a Ideogram model for image generation, exposed as a REST API on WaveSpeedAI. Ideogram V3 Generate Transparent creates high-quality images with transparent backgrounds from text prompts, perfect for logos, stickers, and design assets. Ready-to-use REST inference API, best performance, no cold starts, 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-generate-transparent.
Ideogram v3 Generate Transparent 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`, `aspect_ratio`, `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-v3-generate-transparent.
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.