Seedance 2.5 API 接入文件
透過 Rivya Public API v1 呼叫 Seedance 2.5,包含模型 ID seedance-2-5、輸入類型、參數、Files API 規則、點數和回應範例。
seedance-2-5
text, file
參考素材模式需要
per_input_and_output_second · 480p_with_video=17 · 480p_without_video=28 · 720p_with_video=38 · 720p_without_video=63 · 1080p_with_video=68.5 · 1080p_without_video=114 · ⌈total⌉
影片
METERED
30000 字元
請求欄位
模型 ID 放在頂層欄位。模型專屬控制項放入 params。
| Key | 類型 | 必填 | 預設值 | 說明 |
|---|---|---|---|---|
| model | string | 是 | seedance-2-5 | 使用 seedance-2-5 作為 API 模型 ID。 |
| prompt | string | 否 | - | 這個模型最多 30000 個字元。 |
| params | object | 否 | - | 模型專屬參數物件。可用 keys 請見下方參數表。 |
| client_request_id | string | 否 | - | 可選的用戶端請求 ID,方便你在自己的系統中追蹤請求。 |
模型參數
| Key | 類型 | 必填 | 預設值 | 範圍 | 選項 | 說明 |
|---|---|---|---|---|---|---|
| seedance_scene | select | 否 | text | - | text, frames, reference | 上傳前先選擇輸入合約;文字、畫面引導與參考是互斥場景。 |
| resolution | select | 否 | 720p | - | 480p, 720p, 1080p | 每種解析度都有各自的無影片與含影片費率。 |
| aspect_ratio | select | 否 | adaptive | - | 1:1, 4:3, 3:4, 16:9, 9:16, 21:9, adaptive | 畫面比例 |
| duration | number | 否 | 5 | min -1 / max 30 / step 1 | - | 選擇 -1 代表自動片長,或選擇 4 至 30 秒的整數。自動片長會在執行前預留 30 個輸出秒數。 |
| output_format | select | 否 | mp4 | - | mp4, mov | 輸出格式 |
| generate_audio | select | 否 | true | - | true, false | 要求在輸出短片中一併生成音訊。 |
| return_last_frame | select | 否 | false | - | false, true | 另將影片最後一幀以靜態圖片回傳,供檢查或後續工作使用。 |
| web_search | select | 否 | false | - | false, true | 允許模型在這次執行中使用可選的網頁搜尋控制。 |
| nsfw_checker | select | 否 | true | - | false, true | 啟用模型的可選內容篩選。任何自動篩選都無法保證完整涵蓋。 |
上傳策略
先上傳參考文件,再把回傳的 URL 和 durationToken 放入 params.referenceMediaItems。
引導畫面或高容量參考素材: 畫面場景接受 1 或 2 張 JPEG、PNG、WebP、BMP、GIF 或 TIFF 圖片,每張不超過 30 MB。參考場景最多接受 30 張圖片、10 段不超過 95 MB 且長 2-30 秒的 MP4/MOV 影片,以及 10 個不超過 15 MB 且長 2-30 秒的 MP3/WAV 音訊檔;影片與音訊總片長各自不得超過 30 秒,所有媒體合計不得超過 50 個檔案。
50
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 | 95 MB | video/mp4, video/quicktime |
| audio | 15 MB | audio/mpeg, audio/wav, audio/x-wav |
最小請求
{
"model": "seedance-2-5",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"seedance_scene": "text",
"resolution": "720p",
"aspect_ratio": "adaptive",
"duration": 5,
"output_format": "mp4",
"generate_audio": "true",
"return_last_frame": "false",
"web_search": "false",
"nsfw_checker": "true"
}
}參考文件請求
{
"model": "seedance-2-5",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"seedance_scene": "reference",
"resolution": "720p",
"aspect_ratio": "adaptive",
"duration": 5,
"output_format": "mp4",
"generate_audio": "true",
"return_last_frame": "false",
"web_search": "false",
"nsfw_checker": "true",
"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",
"width": 1280,
"height": 720,
"sizeBytes": 8388608,
"framesPerSecond": 30,
"videoBitrateMbps": 8,
"videoMetadataToken": "video_metadata_token_from_original_files_api_upload_response"
}
]
}
}建立回應
建立 endpoint 會回傳公開 task id。繼續輪詢狀態 endpoint,直到任務成功或失敗。
{
"id": "task_seedance_2_5_example",
"status": "queued",
"model": "seedance-2-5",
"reserved_credits": 315,
"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 上傳參考素材。