All models

Alibaba: Wan 3.0

alibaba/wan-3.0
video

Wan 3.0 is a video generation model from Alibaba for text-to-video, image-to-video, and reference-guided video generation. It produces 480p, 720p, or 1080p video with durations from 2 to 30 seconds.

Pricing

per clip · 2s

Parameters

promptrequired
seconds · · · · · · · · · · · · · · · · · · · · · · · · · · · ·
size · · · · · · · · · · · · · ·
input_references2–9 images

How to use via API

import time
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
video = client.videos.create(
model="alibaba/wan-3.0",
prompt="Кот-космонавт на мотоцикле, ночь",
seconds="2",
size="480x480",
# input_references=[...] # 2–9 референс-картинок
)
while video.status not in ("completed", "failed"):
time.sleep(5)
video = client.videos.retrieve(video.id)
client.videos.download_content(video.id).write_to_file("video.mp4")
Try in the botAPI docs