All models

Alibaba: Wan 3.0 Prime

alibaba/wan-3.0-prime
video

Wan 3.0 Prime is a fast-mode variant of Wan 3.0 from Alibaba. It supports text-to-video and first-frame image-to-video generation.

Price
Released
Aug 27, 2026

Calculator

per clip · 2s

Parameters

promptrequired, up to 30,000 characters
seconds
size
input_references2–10 images
Fine-tuning · 1
seedReproducibility number: the same prompt with the same seed yields the same clip

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-prime",
    prompt="Кот-космонавт на мотоцикле, ночь",
    seconds="2",
    size="480x480",
    # input_references=[...]  # 2–10 референс-картинок
)
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")
API docsTry in the bot