Alibaba: wan2.6-i2v-flash
wan2.6-i2v-flash
Wan 2.6 Image-to-Video Flash delivers faster generation at a better price-performance ratio. Its intelligent shot scheduling supports multi-shot storytelling, stable multi-character dialogue, more natural voice timbre, and video generation up to 15 seconds.
Provider: Alibaba|Input types
Output types|Publish Time: None
Group price
Price information for different user groups
Auto Group routing → default
| Group | Billing type | Input Price | Output Price |
|---|---|---|---|
| default | Pay per view | $0.072 | $0.072 |
Provider
Pricing$0.072
Input video-
Input audio-
Web Search-
Cache pricing-
Context window-
Max output-
Latency397 ms
Throughput170 TPS
Availability97.50%
API call example
Connect quickly using the standard OpenAI-compatible APIPython
1
import openai2
3
client = openai.OpenAI(4
api_key="<YOUR_API_KEY>",5
base_url="http://localhost:3000/v1"6
)7
8
response = client.chat.completions.create(9
model="wan2.6-i2v-flash",10
messages=[11
{"role": "user", "content": "What model are you?"}12
]13
)14
15
print(response.choices[0].message.content)