Qwen

Wan 3.0

Video Generation
alibaba/wan-3.0

阿里通义万相 3.0 视频生成模型,单模型统一支持文生视频、图生视频(首帧/首尾帧)与参考生视频,可混合输入文本、图片、视频、音频等多模态素材(最多 10 张参考图、5 段参考视频/音频)。480P/720P/1080P 分辨率、2-30 秒时长、6 种宽高比与自适应,默认输出同步音频,支持视频续写与编辑。

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
BaiLianAliyun
Supported Protocols
OpenAIopenai

Pricing

From $0.05/s
ResolutionModeAudioPrice / Second
480pAnyAny$0.05/s
720pAnyAny$0.1/s
1080pAnyAny$0.2/s
All other combinations$0.2/s

Billed per second of generated video. Supported parameter combinations and prices are determined by the live API and may vary by model version.

Providers

BaiLianAliyun
Protocols
OpenAIopenai/v1/videos

Code Examples

import time
import requests
BASE = "https://api.ofox.ai/v1/videos"
HEADERS = {"Authorization": "Bearer YOUR_OFOX_API_KEY"}
# Create the generation task
task = 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,
}).json()
# Poll until the task reaches a terminal state
while True:
task = requests.get(f"{BASE}/{task['id']}", headers=HEADERS).json()
if task["status"] in ("completed", "failed", "cancelled", "expired"):
break
time.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])

Frequently Asked Questions

Wan 3.0 on Ofox.ai costs from $0.05 per second of generated video. The exact rate depends on resolution, generation mode, and audio. Pay-as-you-go, no monthly fees.