Wan 3.0 API

All-in-one video generation up to 30 seconds with native audio, omni-modal references (images, video, audio, files, web links), and a fast Prime tier.

Alibaba Cloudビデオ生成リリース 2026年8月6日Singapore独自エンドポイント新着

Wan 3.0 について

All-in-one video generation up to 30 seconds with native audio, omni-modal references (images, video, audio, files, web links), and a fast Prime tier.

別名 Alibaba Cloud Wan 3.0

text to videoimage to videoreference to videoaudio synccharacter consistency

Wan 3.0 の仕様

モデルID
wan-3-0
プロバイダー
Alibaba Cloud
カテゴリ
ビデオ生成
リリース
2026年8月6日
入力
テキスト画像動画音声
出力
動画
リージョン
Singapore
エンドポイント
POST/v1/videos/generations
代替モデルID
alibaba/wan-3.0wan-3.0wan3.0wan3.0-videowan3.0-video-prime

Wan 3.0 API の料金

EmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。

タイプ
仕様
料金
Standard 480P
per second
$0.07
Standard 720P
per second
$0.14
Standard 1080P
per second
$0.28
Prime 480P
per second
$0.136
Prime 720P
per second
$0.28
Prime 1080P
per second
$0.56
料金ページ全体で比較

Wan 3.0 API の呼び出し方

Wan 3.0 は POST /v1/videos/generations で動作します。リクエストはすぐに job_id を返すので、ジョブが完了するまで GET /v1/jobs/{job_id} をポーリングし、結果から出力 URL を読み取ってください。 EmpirioLabs ダッシュボードで API キーを取得してください。

cURL: ジョブを送信
curl https://api.empiriolabs.ai/v1/videos/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "wan-3-0",
    "prompt": "Describe what you want Wan 3.0 to generate."
  }'
cURL: 結果をポーリング
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/videos/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "wan-3-0",
        "prompt": "Describe what you want Wan 3.0 to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Wan 3.0 API の完全リファレンス

Wan 3.0 API のパラメーター

EmpirioLabs 上の Wan 3.0 API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。

パラメータタイプデフォルト範囲 / 値説明
promptstring--Scene description, up to 20,000 characters. In reference mode, address inputs in your prompt as Image 1, Video 1, Audio 1.
model_tierenumstandardstandard, primestandard: full quality at the base rate. prime: significantly faster end-to-end generation at a higher per-second rate. Each tier is billed at its own rate.
modeenumautoauto, t2v, i2v, r2vAuto detects from attachments. t2v: text-to-video. i2v: animate one image, or interpolate between two (first and last frame). r2v: omni reference from images,...
resolutionenum1080p480p, 720p, 1080pOutput resolution. Each resolution bills at its own per-second rate.
durationnumber52 から 30Clip length in seconds. Pass -1 via the API to let the model choose the length. With video references, input plus output stays within 30 seconds.
aspect_ratioenumadaptiveadaptive, 16:9, 9:16, 1:1, 4:3, 3:4adaptive recommends an aspect ratio from your inputs and prompt.
imagestring--Image URL. i2v uses one or two images (first and last frame); r2v accepts up to 10 references.
videostring--Reference video URL (r2v). Up to 5 clips, 15 seconds combined.
seednumber-0 から 2147483647Reproducibility seed.
audiobooleantrue-Generate the soundtrack with the video. Turning it off does not change the price.
watermarkbooleanfalse-Add a provenance watermark to the output.
prompt_extendbooleantrue-Let the service rewrite the prompt for better results.
linkstring--Public web page URL used as a reference (r2v). Provide either a link or a file_url, not both.
file_urlstring--Document URL used as a reference (r2v): PDF, Office, or text files up to 100 MB and 50 pages. Provide either a file_url or a link, not both.

知っておくと便利

Generation can take several minutes on the standard tier; the prime tier is significantly faster end to end. Modes are auto-detected from attachments, or override with the mode parameter. The model_tier parameter picks standard or prime; each tier bills at its own per-second rate.

Modes

  • T2V: no attachments
  • I2V: 1 image (first frame), or exactly 2 images (first + last frame)
  • R2V (omni reference): up to 10 images, 5 videos (15s combined), and 5 audio clips (15s combined), plus 1 document file or 1 public web link; address them in your prompt as Image 1, Video 1, Audio 1
  • I2V frames and R2V references cannot be combined in one request

Inputs

  • Images: JPEG, PNG, BMP, or WEBP, 240 to 8,000 px per side, up to 20 MB
  • Videos: MP4 or MOV, 1-15s per clip, up to 100 MB
  • Audio: WAV or MP3, 1-15s per clip, up to 15 MB

Duration and billing

  • Clips run 2-30 seconds; pass duration: -1 to let the model choose the length
  • With video references, input plus output share the 30-second budget, and billed seconds cover input + output combined
  • Output is MP4 at 30 fps with native audio; audio: false disables sound without changing the price

Uploaded media preprocessing

  • Reference videos are normalized to provider-compatible MP4 when needed.

Wan 3.0 API: よくある質問

Wan 3.0 API の料金はいくらですか?

EmpirioLabs では Wan 3.0 は従量課金です: Standard 480P $0.07 per second; Standard 720P $0.14 per second; Standard 1080P $0.28 per second。このページのライブ料金表は常に API の請求額と一致します。

Wan 3.0 はどのエンドポイントを使いますか?

Wan 3.0 は api.empiriolabs.ai 上の POST /v1/videos/generations で提供され、標準的な Bearer トークン認証を使用します。

統合する前にブラウザで Wan 3.0 を試せますか?

はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Wan 3.0 をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。

Wan 3.0 の API キーはどうやって取得しますか?

EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。

より良いエンドポイントを使う準備はできていますか?

ご自身のモデルを当社のスタックに展開したい方は、ぜひご価格をご覧ください。