WAN 2.6 Image-to-Video Pro converts images into premium-quality videos with superior motion dynamics, enhanced visual fidelity, and professional cinematic output. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Inactivo
$0.6por ejecución·~16 / $10
The silver Formula 1 car accelerates out of the corner with roaring engine sounds, rear tires spinning and kicking up rubber debris. The camera follows the car in a dynamic tracking shot as it powers down the straight, heat haze shimmering off the asphalt. The rear wing vibrates slightly under aerodynamic load, brake discs glow faintly red. Background spectators and track marshals remain slightly blurred with natural motion blur. Cinematic, 60fps, motorsport broadcast style. Add suitable background sound.
A young couple sits at a warmly lit bar, gazing into each other's eyes with soft smiles. The woman tucks her hair behind her ear, rests her chin on her hand, and says with a playful smile: 'So... you're saying you've never been here before?' The man leans closer, gently swirling his Aperol Spritz, and replies with a charming grin: 'Never. But I think I just found my favorite spot.' She laughs softly, looking down shyly before meeting his eyes again. The bokeh lights in the background shimmer warmly, glasses clink in the distance, soft jazz plays faintly. The camera slowly dollies in with shallow depth of field. Warm golden tones, cinematic romantic film style, 24fps, anamorphic lens flare.
Wan 2.6 Image-to-Video Pro is premium image-to-video model, transforming still images into cinematic video with superior motion quality and detail. Upload a reference image, describe the scene and motion — the model generates smooth, high-resolution video with optional audio input and flexible duration options.
Pro-tier quality Superior visual fidelity and motion realism from latest Wan 2.6 architecture.
Multiple resolutions Output in 1080p, 2K, or 4K to match your production needs.
Audio support Optional audio input for synchronized video generation.
Shot type control Choose between single or multi-shot compositions.
Prompt Enhancer Built-in prompt optimizer for improved generation results.
Negative prompt support Specify elements to exclude for more precise control.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired scene and motion |
| image | Yes | Reference image to animate (URL or upload) |
| audio | No | Audio file for synchronized video (URL or upload) |
| negative_prompt | No | Elements to exclude from the video |
| resolution | No | Output resolution: 1080p (default), 2k, 4k |
| duration | No | Video length in seconds (default: 5) |
| shot_type | No | Shot composition: single (default) or multi |
| enable_prompt_expansion | No | Enable prompt optimizer (default: disabled) |
| seed | No | Random seed for reproducibility (-1 for random) |
| Duration | 1080p | 2k | 4k |
|---|---|---|---|
| 5 s | $0.60 | $0.70 | $0.80 |
| 10 s | $1.20 | $1.40 | $1.60 |
| 15 s | $1.80 | $2.10 | $2.40 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/alibaba/wan-2.6/image-to-video-pro 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.6 Image To Video Pro below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/alibaba/wan-2.6/image-to-video-pro" \
-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",
"audio": "https://example.com/your-audio.mp3",
"negative_prompt": "blurry, low quality, distorted",
"resolution": "1080p",
"duration": 5,
"shot_type": "single",
"enable_prompt_expansion": false,
"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("alibaba/wan-2.6/image-to-video-pro", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"audio": "https://example.com/your-audio.mp3",
"negative_prompt": "blurry, low quality, distorted",
"resolution": "1080p",
"duration": 5,
"shot_type": "single",
"enable_prompt_expansion": false,
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"alibaba/wan-2.6/image-to-video-pro",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"audio": "https://example.com/your-audio.mp3",
"negative_prompt": "blurry, low quality, distorted",
"resolution": "1080p",
"duration": 5,
"shot_type": "single",
"enable_prompt_expansion": false,
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputWan 2.6 Image To Video Pro is a Alibaba model for video generation from images, exposed as a REST API on WaveSpeedAI. WAN 2.6 Image-to-Video Pro converts images into premium-quality videos with superior motion dynamics, enhanced visual fidelity, and professional cinematic output. 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/alibaba/alibaba-wan-2.6-image-to-video-pro.
Wan 2.6 Image To Video Pro starts at $0.60 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`, `audio`, `resolution`, `duration`, `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/alibaba/alibaba-wan-2.6-image-to-video-pro.
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 (Alibaba). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.