Wan 2.2 I2V 5B converts images into high-quality 720P videos using a 5B image-to-video model for AI video generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.05per run·~20 / $1
A car drifts along a dusty mountain road in a wide-angle shot. Thick dust trails whip into the air behind the tires, catching the light. Sunlight breaks through scattered clouds, casting dramatic beams across the winding cliffs. The camera tracks the drift with smooth, energetic motion, capturing the power and grit of the slide.
A cowboy rides briskly through a desert at dusk, wide landscape shots capturing long shadows. Horse gallops naturally, wind in the cowboy's clothing, cinematic spaghetti western tone, smooth, fluid motion, not in slow motion.
A massive jellyfish drifts above a fully submerged city, its glowing tendrils illuminating the flooded skyline. Schools of fish weave through the windows of towering skyscrapers. An underwater dolly shot follows a child in diving gear as she swims forward, reaching out toward the jellyfish’s radiant tendrils. Soft particles float through the water, and the camera glides smoothly, capturing the awe of the moment.
A young skater doing tricks at a graffiti-covered skatepark during sunset, fast-paced energy, lens flare and dust in the air, casual crowd cheering in the background, low-angle tracking shot following the skateboard wheels.
A lone female traveler walks purposefully through a sand-swept desert. Wide shots capture her steady stride, scarf moving naturally in the wind. Side views show wind brushing her garments dynamically. Close-ups reveal her determined eyes, all movements smooth and fluid, cinematic lighting, natural pacing, not in slow motion.
Wan 2.2 Image-to-Video 5B 720p is a powerful image-to-video generation model built on a 5 billion parameter architecture. Transform static images into dynamic 720p HD videos with smooth motion and cinematic quality — all at an incredibly affordable price.
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Source image to animate (upload or public URL). |
| prompt | Yes | Text description of desired motion and style. |
| seed | No | Set for reproducibility; -1 for random. |
| Output | Price |
|---|---|
| Per video | $0.05 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.2/i2v-5b-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 I2v 5b 720p below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.2/i2v-5b-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",
"image": "https://example.com/your-input.jpg",
"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/i2v-5b-720p", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"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/i2v-5b-720p",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputWan 2.2 I2v 5b 720p is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. Wan 2.2 I2V 5B converts images into high-quality 720P videos using a 5B image-to-video model for AI video generation. 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-i2v-5b-720p.
Wan 2.2 I2v 5b 720p 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`, `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/wavespeed-ai/wan-2.2-i2v-5b-720p.
Average end-to-end generation time on WaveSpeedAI is around 93 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.