模型 API 接入文件
Wan Animate Replace API 接入文件
透過 Rivya Public API v1 呼叫 Wan Animate Replace,包含模型 ID wan-2-2-animate-replace、輸入類型、參數、Files API 規則、點數和回應範例。
API 可呼叫可用狀態影片
API 模型 ID
wan-2-2-animate-replace
輸入類型
file
Files API
參考素材模式需要
基礎點數
per_output_second · 480p=6 · 580p=9.5 · 720p=12.5 · ⌈total⌉
能力類型
影片
計費方式
METERED
Prompt 上限
未設定 prompt 上限
請求欄位
模型 ID 放在頂層欄位。模型專屬控制項放入 params。
| Key | 類型 | 必填 | 預設值 | 說明 |
|---|---|---|---|---|
| model | string | 是 | wan-2-2-animate-replace | 使用 wan-2-2-animate-replace 作為 API 模型 ID。 |
| prompt | string | 是 | - | 支援文字輸入的模型使用這個欄位傳入 prompt。 |
| params | object | 否 | - | 模型專屬參數物件。可用 keys 請見下方參數表。 |
| client_request_id | string | 否 | - | 可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。 |
模型參數
| Key | 類型 | 必填 | 預設值 | 範圍 | 選項 | 說明 |
|---|---|---|---|---|---|---|
| resolution | select | 否 | 480p | - | 480p, 580p, 720p | 目前級別為 `480p`、`580p` 和 `720p`。較高輸出級別通常代表更高點數成本和更長等待時間。 |
上傳策略
先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。
參考素材規則
video: video, image
最大文件數
2
支援文件類型
video, image
時長 Token
影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。
| kind | 大小上限 | MIME 類型 |
|---|---|---|
| video | 50 MB | video/mp4, video/quicktime, video/webm |
| image | 10 MB | image/jpeg, image/png, image/webp |
最小請求
{
"model": "wan-2-2-animate-replace",
"params": {
"resolution": "480p"
}
}參考文件請求
{
"model": "wan-2-2-animate-replace",
"params": {
"resolution": "480p",
"referenceMediaItems": [
{
"url": "https://cdn.example.com/reference-video.mp4",
"kind": "video",
"name": "reference-video.mp4",
"mimeType": "video/mp4",
"durationSeconds": 8,
"durationToken": "video_duration_token_from_files_api"
}
]
}
}建立回應
建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。
{
"id": "task_wan_2_2_animate_replace_example",
"status": "queued",
"model": "wan-2-2-animate-replace",
"reserved_credits": 6,
"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 上傳參考素材。