Wan 2.2 t2v-720p converts text prompts into native 720P videos, producing high-quality 720P clips from simple prompts. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.3per run·~33 / $10
Daylight, sidelight, soft light, warm colors, azure sky. A red-haired woman laughs openly, her long, curly hair flicking in the wind, wearing a brightly colored, flower-printed green suit with slim pants legs and a pair of bright, fluorescent green boots. She wore a huge wide-brimmed straw hat with a slightly drooping brim. She stands on a golden hay-covered country path with open fields and clear blue skies in the background. Her hands hold up a blue garden hose, and what gushes out of the mouth of the hose is not a stream of water, but a myriad of colorful flowers, blooming like fireworks and floating in the air. The flowers are rich in color and shape, and shine softly in the sunlight.
Close-up, soft light, the lower half of a young woman's face is in sharp focus, her lips are slightly parted and she is blowing a huge bubble gum bubble. The bubble is translucent, with a soft luster under the light, and inside it is a miniature aquarium, in which two orange and white goldfish swim slowly, with their fins swinging lightly, as if they were in the water world. The background is pure light blue.
A nobleman with flowing auburn hair and a richly embroidered velvet cloak strides confidently through the grand halls of a Renaissance palace, sunlight filtering through stained glass windows, casting colorful patterns across marble floors. He holds a silver goblet engraved with family crests, while a trained falcon perches calmly on his shoulder. The air is heavy with elegance, courtly secrets, and the weight of history.
A tall woman in an avant-garde black and gold high-fashion gown poses at the edge of a minimalist runway, lit with dramatic spotlights. Her expression is fierce, makeup bold, with an asymmetrical hairstyle. The fabric flows elegantly to the floor, shimmering subtly. Moody luxury atmosphere, Vogue-level composition, editorial photography.She spins elegantly, strides toward the camera with dramatic poise, her gown rippling in waves, ending with a powerful head turn under flashing lights.
An ethereal woman with long silver hair and an ice-crystal crown stands on a frozen lake. Her gown flows like frosted glass, and snowflakes orbit her gently. The world around her glows blue and white, illuminated by northern lights. Magical realism, high fantasy elegance.
In a neon-lit city of the future, a poised and graceful woman wearing a shimmering chrome gown walks down a deserted street as digital butterflies flutter around her. Her cybernetic eyes scan the holographic skyline, while her metallic cape flows like liquid light. Rain reflects the glowing advertisements around her, and behind her, a hovering luxury drone quietly follows. The atmosphere feels cinematic, intimate yet grand, evoking both mystery and majesty.
A man in his 50s paces slowly in a hospital hallway, checking his watch repeatedly. Nurses pass by. His breathing is audible, shallow. His face shows fatigue and worry. Fluorescent lights flicker slightly. Camera follows him in a long tracking shot.
A young man sits in the backseat of a car, staring out at rain trickling down the window. Outside, blurred streetlights shimmer through the glass. His expression is distant, lips pressed together, lost in thought.
An old man sits alone in a train as memories of his youth play out in the window reflections, soft warm tones
A hooded mage walks through a glowing enchanted forest, casting faint blue magic as floating wisps illuminate her path. Fireflies flutter, and trees pulse with light. Magical ambiance, ethereal tones, smooth dolly shots.
A scientist in a white suit stands in a sterile lab, operating a robotic arm assembling nano-components. LED lights flicker, and data flows across transparent screens. Futuristic, clinical aesthetic, precise camera movements.
A slow pan across a quiet countryside field at dawn. Morning mist floats over golden wheat, birds chirp, and a girl in a white dress picks flowers with a gentle smile. Soft lighting, peaceful mood, Studio Ghibli-inspired tone.
A romantic couple dances barefoot under a starry night sky on a deserted beach. Soft waves crash rhythmically nearby, reflecting moonlight. The scene unfolds in slow motion, illuminated by warm, cinematic lighting that enhances the intimacy. The woman's dress flows gently in the breeze as they move gracefully, lost in each other’s eyes. A soft instrumental melody plays faintly in the background, capturing the mood of timeless romance.
Generate high-quality 720p HD videos from text descriptions with Wan 2.2. Simply describe your scene and watch it come to life — no source images required. With landscape and portrait support, create professional-grade content for any platform.
Need custom styles? Try Wan 2.2 T2V 720p LoRA for LoRA adapter support.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the scene, action, and atmosphere you want. |
| negative_prompt | No | Elements to avoid in the generated video. |
| size | No | Output dimensions: 1280×720 (landscape) or 720×1280 (portrait). Default: 1280×720. |
| duration | No | Video length: 5 or 8 seconds. Default: 5. |
| seed | No | Random seed for reproducibility. Use -1 for random. |
Per 5-second billing based on duration.
| Duration | Calculation | Cost |
|---|---|---|
| 5 seconds | 5 ÷ 5 × $0.30 | $0.30 |
| 8 seconds | 8 ÷ 5 × $0.30 | $0.48 |
| Size | Orientation | Best For |
|---|---|---|
| 1280×720 | Landscape | YouTube, presentations, desktop viewing, TV |
| 720×1280 | Portrait | TikTok, Instagram Reels, Stories, mobile |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.2/t2v-720p 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 Wan 2.2 T2v 720p below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.2/t2v-720p" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"size": "1280*720",
"duration": 5,
"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("wavespeed-ai/wan-2.2/t2v-720p", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"size": "1280*720",
"duration": 5,
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"wavespeed-ai/wan-2.2/t2v-720p",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"negative_prompt": "blurry, low quality, distorted",
"size": "1280*720",
"duration": 5,
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputWan 2.2 T2v 720p is a WaveSpeedAI model for video generation, exposed as a REST API on WaveSpeedAI. Wan 2.2 t2v-720p converts text prompts into native 720P videos, producing high-quality 720P clips from simple prompts. 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/wavespeed-ai/wan-2.2-t2v-720p.
Wan 2.2 T2v 720p starts at $0.30 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`, `duration`, `size`, `seed`, `negative_prompt`. 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/wavespeed-ai/wan-2.2-t2v-720p.
Average end-to-end generation time on WaveSpeedAI is around 162 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 (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.