Vidu Text-to-Image Q2 converts text prompts into high-quality images with exceptional visual detail and creative flexibility. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Inattivo

$0.03per esecuzione·~33 / $1

Commercial food photography, extreme macro close-up. A wooden dipper pulling up thick, golden honey from a jar. The honey is translucent and glowing in the sunlight. A few pollen particles floating in the air. Background is a blurred garden. Mouth-watering texture, warm tone, high fidelity, subsurface scattering.

Hyper-realistic portrait of an elderly tribal elder with weathered, leathery skin deep in a rainforest. Every wrinkle and pore is visible. Raindrops sitting on the skin. Intricate colorful feather headdress. Rim lighting from the side highlighting the fine facial fuzz and floating dust particles. Intense gaze, cinematic lighting, shot on 70mm lens, IMAX quality.

A futuristic cyberpunk megastructure city built vertically inside a massive cave system. Neon lights in teal and orange illuminating the fog. Hundreds of flying vehicles moving on different levels. Bottom-up view looking at the towering skyscrapers disappearing into the mist. Volumetric lighting, atmospheric perspective, high contrast, unreal engine 5 style, intricate details.

High-speed photography of a colorful paint and powder explosion in a dark studio. Swirls of red, blue, and gold liquid mixing in mid-air. Liquid droplets frozen in time. High contrast, sharp focus, subsurface scattering in the liquid, dynamic composition, 4k, wallpaper quality.

Close-up of a mechanical heart mechanism. Intricate steampunk style. Thousands of tiny brass gears, copper pipes, and steel pistons working together. Steam escaping from small vents. A glowing amber crystal energy source in the center. Vintage atmosphere, cinematic depth of field, sharp focus on the gears, metallic texture.
vidu/text-to-image-q2 is a high-end text-to-image model that focuses on clean composition, cinematic lighting, and high resolutions up to 4K. It’s built for scenarios where a single image has to carry a lot of visual weight: posters, key visuals, thumbnails, or product hero shots.
| Resolution | Price per image |
|---|---|
| 1080p | $0.03 |
| 2K | $0.04 |
| 4K | $0.05 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/vidu/text-to-image-q2 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 Text To Image Q2 below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/vidu/text-to-image-q2" \
-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",
"resolution": "1080p",
"seed": -1
}'
# 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("vidu/text-to-image-q2", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"resolution": "1080p",
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"vidu/text-to-image-q2",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "1:1",
"resolution": "1080p",
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputText To Image Q2 is a Vidu model for image generation, exposed as a REST API on WaveSpeedAI. Vidu Text-to-Image Q2 converts text prompts into high-quality images with exceptional visual detail and creative flexibility. 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/vidu/vidu-text-to-image-q2.
Text To Image Q2 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`, `aspect_ratio`, `resolution`, `seed`. 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/vidu/vidu-text-to-image-q2.
Average end-to-end generation time on WaveSpeedAI is around 85 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 (Vidu). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.