Rivya AI 文件
模型 API 接入文件

Wan 2.6 API 接入文件

透過 Rivya Public API v1 呼叫 Wan 2.6,包含模型 ID wan-2-6、輸入類型、參數、Files API 規則、點數和回應範例。

API 可呼叫文字或 URL 可用;參考模式使用 Files API影片
API 模型 ID

wan-2-6

輸入類型

text, file

Files API

參考素材模式需要

基礎點數

per_video · 720p_5=70 · 720p_10=140 · 720p_15=210 · 1080p_5=104.5 · 1080p_10=209.5 · 1080p_15=315 · ⌈total⌉

能力類型

影片

計費方式

FIXED

Prompt 上限

5000 字元

請求欄位

模型 ID 放在頂層欄位。模型專屬控制項放入 params。

Key類型必填預設值說明
modelstringwan-2-6使用 wan-2-6 作為 API 模型 ID。
promptstring-這個模型最多 5000 個字元。
paramsobject-模型專屬參數物件。可用 keys 請見下方參數表。
client_request_idstring-可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。

模型參數

Key類型必填預設值範圍選項說明
resolutionselect1080p-720p, 1080p解析度
durationselect5-5, 10, 15時長
multi_shotsselectfalse-false, true鏡頭模式
nsfw_checkerselecttrue-false, true內容過濾

上傳策略

先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。

參考素材規則

參考媒體: 請使用恰好 1 張 JPG/PNG/WebP 圖片(至少 256×256、最大 10 MB)或 1–3 個 MP4/MOV 影片(每個最大 10 MB)。

最大文件數

3

支援文件類型

image, video

時長 Token

影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。

kind大小上限MIME 類型
image10 MBimage/jpeg, image/png, image/webp
video10 MBvideo/mp4, video/quicktime

最小請求

{
  "model": "wan-2-6",
  "prompt": "A cinematic product reveal with smooth camera movement",
  "params": {
    "resolution": "1080p",
    "duration": "5",
    "multi_shots": "false",
    "nsfw_checker": "true"
  }
}

參考文件請求

{
  "model": "wan-2-6",
  "prompt": "A cinematic product reveal with smooth camera movement",
  "params": {
    "resolution": "1080p",
    "duration": "5",
    "multi_shots": "false",
    "nsfw_checker": "true",
    "referenceMediaItems": [
      {
        "url": "https://cdn.example.com/reference-video-1.mp4",
        "kind": "video",
        "name": "reference-video-1.mp4",
        "mimeType": "video/mp4",
        "durationSeconds": 8,
        "durationToken": "video_duration_token_1_from_files_api",
        "width": 1280,
        "height": 720,
        "sizeBytes": 8388608,
        "framesPerSecond": 30,
        "videoBitrateMbps": 8,
        "videoMetadataToken": "video_metadata_token_1_from_files_api"
      },
      {
        "url": "https://cdn.example.com/reference-video-2.mp4",
        "kind": "video",
        "name": "reference-video-2.mp4",
        "mimeType": "video/mp4",
        "durationSeconds": 8,
        "durationToken": "video_duration_token_2_from_files_api",
        "width": 1280,
        "height": 720,
        "sizeBytes": 8388608,
        "framesPerSecond": 30,
        "videoBitrateMbps": 8,
        "videoMetadataToken": "video_metadata_token_2_from_files_api"
      },
      {
        "url": "https://cdn.example.com/reference-video-3.mp4",
        "kind": "video",
        "name": "reference-video-3.mp4",
        "mimeType": "video/mp4",
        "durationSeconds": 8,
        "durationToken": "video_duration_token_3_from_files_api",
        "width": 1280,
        "height": 720,
        "sizeBytes": 8388608,
        "framesPerSecond": 30,
        "videoBitrateMbps": 8,
        "videoMetadataToken": "video_metadata_token_3_from_files_api"
      }
    ]
  }
}

建立回應

建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。

{
  "id": "task_wan_2_6_example",
  "status": "queued",
  "model": "wan-2-6",
  "reserved_credits": 105,
  "final_credits": 0,
  "settlement_status": "RESERVED",
  "created_at": "2026-05-11T00:00:00.000Z",
  "updated_at": "2026-05-11T00:00:00.000Z",
  "result": null,
  "error": null
}

常見錯誤

validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found

部分模式需要透過 Files API 上傳參考素材。