Seedance 2.0 Fast API 接入文件
透過 Rivya Public API v1 呼叫 Seedance 2.0 Fast,包含模型 ID seedance-2-fast、輸入類型、參數、Files API 規則、點數和回應範例。
seedance-2-fast
text, file
參考素材模式需要
per_input_and_output_second · 480p_with_video=6.8 · 480p_without_video=11.7 · 720p_with_video=15 · 720p_without_video=24.8 · ⌈total⌉
影片
METERED
20000 字元
請求欄位
模型 ID 放在頂層欄位。模型專屬控制項放入 params。
| Key | 類型 | 必填 | 預設值 | 說明 |
|---|---|---|---|---|
| model | string | 是 | seedance-2-fast | 使用 seedance-2-fast 作為 API 模型 ID。 |
| prompt | string | 是 | - | 這個模型最多 20000 個字元。 |
| params | object | 否 | - | 模型專屬參數物件。可用 keys 請見下方參數表。 |
| client_request_id | string | 否 | - | 可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。 |
模型參數
| Key | 類型 | 必填 | 預設值 | 範圍 | 選項 | 說明 |
|---|---|---|---|---|---|---|
| seedance_scene | select | 否 | text | - | text, frames, reference | 選擇要執行哪條 Seedance 2 路徑:純文字轉影片、首幀 / 首尾幀引導,或多模態參考生成。 |
| resolution | select | 否 | 720p | - | 480p, 720p | 解析度 |
| aspect_ratio | select | 否 | 16:9 | - | 1:1, 4:3, 3:4, 16:9, 9:16, 21:9, adaptive | 長寬比 |
| duration | number | 否 | 5 | min 4 / max 15 | - | 時長 |
| generate_audio | select | 否 | true | - | true, false | 生成音訊 |
| return_last_frame | select | 否 | false | - | false, true | 也會將最後一幀作為靜態圖片返回,適合用於封面、後續執行或稍後編輯。 |
| web_search | select | 否 | false | - | false, true | 網路搜尋 |
| nsfw_checker | select | 否 | false | - | false, true | NSFW 檢查器 |
上傳策略
先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。
多模態參考: Frames: 1–2 signed images. Reference: up to 9 JPEG/PNG/WebP/BMP/TIFF/GIF images under 30 MB each, 3 MP4/MOV videos of 2–15 seconds under 50 MB each, and 3 MP3/WAV audio clips of 2–15 seconds under 15 MB each. Video and audio each have a separate 15-second total limit.
15
image, video, audio
影片和音訊參考素材需要時長驗證時,應攜帶 /api/v1/files 回傳的 durationToken。
| kind | 大小上限 | MIME 類型 |
|---|---|---|
| image | 30 MB | image/jpeg, image/png, image/webp, image/bmp, image/gif, image/tiff |
| video | 50 MB | video/mp4, video/quicktime |
| audio | 15 MB | audio/mpeg, audio/wav, audio/x-wav |
最小請求
{
"model": "seedance-2-fast",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"seedance_scene": "text",
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"generate_audio": "true",
"return_last_frame": "false",
"web_search": "false",
"nsfw_checker": "false"
}
}參考文件請求
{
"model": "seedance-2-fast",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"seedance_scene": "reference",
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5,
"generate_audio": "true",
"return_last_frame": "false",
"web_search": "false",
"nsfw_checker": "false",
"seedance_reference_videos": [
{
"url": "https://cdn.example.com/reference-video.mp4",
"durationSeconds": 8,
"durationToken": "video_duration_token_from_files_api",
"sizeBytes": 8388608,
"mimeType": "video/mp4"
}
],
"videoMetadata": [
{
"url": "https://cdn.example.com/reference-video.mp4",
"token": "video_metadata_token_from_files_api",
"sizeBytes": 8388608
}
]
}
}建立回應
建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。
{
"id": "task_seedance_2_fast_example",
"status": "queued",
"model": "seedance-2-fast",
"reserved_credits": 124,
"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 上傳參考素材。