Rivya AI 文件
模型 API 接入文件

Wan 2.7 Video API 接入文件

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

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

wan-2-7-video

輸入類型

text, file

Files API

參考素材模式需要

基礎點數

per_output_second · 720p=16 · 1080p=24 · ⌈total⌉

能力類型

影片

計費方式

FIXED

Prompt 上限

5000 字元

請求欄位

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

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

模型參數

Key類型必填預設值範圍選項說明
resolutionselect720p-720p, 1080p解析度
durationnumber5min 0 / max 15-text/image: integer 2–15 s; video edit: duration=0 or integer 2–10 s
aspect_ratioselect16:9-16:9, 9:16, 1:1, 4:3, 3:4文字轉影片和影片編輯會直接使用此項。圖片轉影片目前會依上傳影格的幾何形狀,而不是另外開放長寬比切換。
negative_prompttext---prompt ≤ 5000; negative_prompt ≤ 500
prompt_extendselecttrue-true, false控制模型是否在生成前改寫你的提示詞。想省事時保持啟用;如果你已經有非常精準的提示詞,則可停用。
watermarkselectfalse-false, true水印
audio_settingselectauto-auto, origin控制影片編輯路徑中的音訊處理方式。自動會讓模型自行判斷,保留原音則會嘗試保留來源影片的音訊。
seednumber-min 0 / max 2147483647-留空時,每次都會產生新的隨機結果。重複使用同一個整數,會更容易重現或微調上一個結果。只有在提示詞和其他關鍵設定也保持相近時,結果才會更接近,但不保證 1:1 完全一致。

上傳策略

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

參考素材規則

參考媒體: 參考媒體: image: JPG/PNG/WebP ≤ 30 MB; video edit: 1 MP4/MOV ≤ 30 MB + 0–1 image; maximum 2 assets total.

最大文件數

2

支援文件類型

image, video

時長 Token

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

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

最小請求

{
  "model": "wan-2-7-video",
  "prompt": "A cinematic product reveal with smooth camera movement",
  "params": {
    "resolution": "720p",
    "duration": 5,
    "aspect_ratio": "16:9",
    "negative_prompt": "negative_prompt ≤ 500",
    "prompt_extend": "true",
    "watermark": "false",
    "audio_setting": "auto",
    "seed": 0
  }
}

參考文件請求

{
  "model": "wan-2-7-video",
  "prompt": "A cinematic product reveal with smooth camera movement",
  "params": {
    "resolution": "720p",
    "duration": 5,
    "aspect_ratio": "16:9",
    "negative_prompt": "negative_prompt ≤ 500",
    "prompt_extend": "true",
    "watermark": "false",
    "audio_setting": "auto",
    "seed": 0,
    "referenceMediaItems": [
      {
        "url": "https://cdn.example.com/reference-image.png",
        "kind": "image",
        "name": "reference-image.png",
        "mimeType": "image/png"
      }
    ]
  }
}

建立回應

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

{
  "id": "task_wan_2_7_video_example",
  "status": "queued",
  "model": "wan-2-7-video",
  "reserved_credits": 80,
  "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 上傳參考素材。