Models / Wanx 2.1 Image-to-Video Plus

Wanx 2.1 Image-to-Video Plus

Qwen Tier 1proprietary

High-quality image-to-video generation. Animates a reference image into a video clip with natural motion.

qwen/wanx2.1-i2v-plus
Context Window
0
Max Output
0
Providers
1
Released
2025-12

Capabilities

video_gen

Pricing by Provider

ProviderInput $/1MOutput $/1MLatency p50Latency p95Status
alibabaFree$120.0060000ms180000ms

Quick Start

Python
import magicrouter

mr = magicrouter.Client(
    provider_keys={"alibaba": "your-api-key"}
)

response = mr.chat(
    "qwen/wanx2.1-i2v-plus",
    "Your prompt here"
)
print(response.choices[0].message.content)
TypeScript
import { MagicRouter } from "magicrouter";

const mr = new MagicRouter({
  providerKeys: { alibaba: "your-api-key" }
});

const response = await mr.chat({
  model: "qwen/wanx2.1-i2v-plus",
  messages: [{ role: "user", content: "Your prompt here" }]
});
console.log(response.choices[0].message.content);
cURL
curl https://dashscope-intl.aliyuncs.com/api/v1/services/aigc/video-generation/video-synthesis/chat/completions \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "wanx2.1-i2v-plus",
    "messages": [{"role": "user", "content": "Your prompt here"}]
  }'

Use this model

Sign up for free and test Wanx 2.1 Image-to-Video Plus in the playground

Get Started
Wanx 2.1 Image-to-Video Plus — MagicRouter