Wan 3.0
Video Generationalibaba/wan-3.0Wan 3.0 is Alibaba's Tongyi Wanxiang video generation model, released on 2026-08-24, unifying text-to-video, image-to-video (first frame or first-and-last frame), and reference-to-video in a single model. Inputs can be mixed across text, image, video, and audio, with up to 10 reference images and 5 reference video or audio clips. It outputs 480P, 720P, or 1080P clips of 2 to 30 seconds across six aspect ratios plus adaptive, emits synchronized audio by default, and supports video continuation and editing. Billed per second of output, by resolution. Accessible via the OpenAI-compatible protocol.
Duration
2-30s
Audio
Supported
Released
2026-08-24
Generation Modes
t2vText to Videoi2vImage to Videov2vVideo to Video
Resolutions
480p720p1080p
Aspect Ratios
16:94:31:13:49:16adaptive
Capabilities
Video Input
Available Providers
Alibaba CloudAliyun
Supported Protocols
openai
Providers
Aliyun
provider.type: "aliyun"From $0.0429/s
| Resolution | Mode | Audio | Price / Second |
|---|---|---|---|
| 480p | Any | Any | $0.0429/s |
| 720p | Any | Any | $0.0857/s |
| 1080p | Any | Any | $0.1714/s |
| All other combinations | $0.1714/s | ||
Protocols
openai
/v1/videosAlibaba Cloud
provider.type: "alicloud"From $0.054/s
| Resolution | Mode | Audio | Price / Second |
|---|---|---|---|
| 480p | Any | Any | $0.054/s |
| 720p | Any | Any | $0.11/s |
| 1080p | Any | Any | $0.21/s |
| All other combinations | $0.21/s | ||
Protocols
openai
/v1/videosBilled per second of generated video. Supported parameter combinations and prices are determined by the live API and may vary by model version.
Code Examples
import timeimport requestsBASE = "https://api.ofox.run/v1/videos"HEADERS = {"Authorization": "Bearer YOUR_OFOX_API_KEY"}# Create the generation tasktask = requests.post(BASE, headers=HEADERS, json={"model": "alibaba/wan-3.0","prompt": "A golden retriever running on the beach at sunset","duration": 2,"resolution": "1080p","generate_audio": True,"provider": {"type": "aliyun"},# Or: "provider": {"type": "alicloud"}}).json()# Poll until the task reaches a terminal statewhile True:task = requests.get(f"{BASE}/{task['id']}", headers=HEADERS).json()if task["status"] in ("completed", "failed", "cancelled", "expired"):breaktime.sleep(10)# Prefer mirror_urls (persistent) then fall back to unsigned_urls (24h)print((task.get("mirror_urls") or task.get("unsigned_urls") or [None])[0])
Prompts & examples
Wan 3.0 prompts & examples · 71 casesVerbatim prompts, full parameters and a playable clip, every one cited to its first-party source.Related Models
More from Alibaba
Frequently Asked Questions
Wan 3.0 on Ofox.ai costs from $0.054 per second of generated video. The exact rate depends on resolution, generation mode, and audio. Pay-as-you-go, no monthly fees.
Wan 3.0 supports: Text to Video, Image to Video, Video to Video, 480p / 720p / 1080p, 2-30s, 16:9 / 4:3 / 1:1 / 3:4 / 9:16 / adaptive. The exact supported combinations are returned by the API.
Create a generation task via POST https://api.ofox.run/v1/videos with your Ofox API key, then poll the task status until it completes and download the video from mirror_urls (or unsigned_urls).
Wan 3.0 supports the following capabilities: Video Input. Access all features through the Ofox.ai unified API.