การเชื่อมต่อ API ของ Seedance 1.5 Pro
ใช้ Seedance 1.5 Pro ผ่าน Rivya Public API v1 ด้วย model id seedance-1-5-pro, input ที่รองรับ, พารามิเตอร์, กฎ Files API, เครดิต และตัวอย่าง response
seedance-1-5-pro
text, file
จำเป็นสำหรับโหมด reference
28
วิดีโอ
FIXED
2500 อักขระ
contract ของ request
ส่ง model id ที่ระดับบนสุด control เฉพาะโมเดลอยู่ใน params
| Key | Type | จำเป็น | ค่าเริ่มต้น | คำอธิบาย |
|---|---|---|---|---|
| model | string | ใช่ | seedance-1-5-pro | ใช้ API model id seedance-1-5-pro |
| prompt | string | ใช่ | - | สูงสุด 2500 อักขระสำหรับโมเดลนี้ |
| params | object | ไม่ใช่ | - | object พารามิเตอร์เฉพาะโมเดล ใช้แถวด้านล่างสำหรับ key ที่อนุญาต |
| client_request_id | string | ไม่ใช่ | - | client-side id แบบเลือกได้สำหรับ trace คำขอในระบบของคุณ |
พารามิเตอร์โมเดล
| Key | Type | จำเป็น | ค่าเริ่มต้น | ช่วง | ตัวเลือก | คำอธิบาย |
|---|---|---|---|---|---|---|
| resolution | select | ไม่ใช่ | 720p | - | 480p, 720p, 1080p | ความละเอียด |
| duration | select | ไม่ใช่ | 8 | - | 4, 8, 12 | ระยะเวลา |
| generate_audio | select | ไม่ใช่ | false | - | false, true | สร้างเสียง |
| aspectRatio | select | ไม่ใช่ | 1:1 | - | 1:1, 4:3, 3:4, 16:9, 9:16, 21:9 | อัตราส่วนภาพ |
| fixed_lens | select | ไม่ใช่ | false | - | false, true | ควบคุมว่าช็อตควรทำงานเหมือนกล้องคงที่มากขึ้นหรือไม่ เมื่อเปิด กล้องจะเคลื่อนไหวอย่างจำกัดมากขึ้น เมื่อปิด จะเปิดให้เกิดการเคลื่อนไหวที่เห็นชัดกว่า |
policy การอัปโหลด
อัปโหลดไฟล์ reference ก่อน จากนั้นใส่ URL และ duration token ที่ได้กลับมาไว้ใน params.referenceMediaItems
ภาพอ้างอิง: อัปโหลดไฟล์ภาพได้สูงสุด 2 ภาพสำหรับโปรเจกต์ภาพ
2
image
reference วิดีโอและเสียงควรมี durationToken จาก /api/v1/files เมื่อจำเป็นต้องตรวจ duration
| kind | ขนาดสูงสุด | MIME type |
|---|---|---|
| image | 10 MB | image/jpeg, image/png, image/webp |
request ขั้นต่ำ
{
"model": "seedance-1-5-pro",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"resolution": "720p",
"duration": "8",
"generate_audio": "false",
"aspectRatio": "1:1",
"fixed_lens": "false"
}
}request แบบไฟล์ reference
{
"model": "seedance-1-5-pro",
"prompt": "A cinematic product reveal with smooth camera movement",
"params": {
"resolution": "720p",
"duration": "8",
"generate_audio": "false",
"aspectRatio": "1:1",
"fixed_lens": "false",
"referenceMediaItems": [
{
"url": "https://cdn.example.com/reference-image.png",
"kind": "image",
"name": "reference-image.png",
"mimeType": "image/png"
}
]
}
}response จากการสร้าง
endpoint create ส่ง public task id กลับมา poll endpoint สถานะจนกว่างานจะสำเร็จหรือล้มเหลว
{
"id": "task_seedance_1_5_pro_example",
"status": "queued",
"model": "seedance-1-5-pro",
"reserved_credits": 28,
"final_credits": 0,
"created_at": "2026-05-11T00:00:00.000Z",
"updated_at": "2026-05-11T00:00:00.000Z",
"result": null,
"error": null
}error ทั่วไป
validation_failed, insufficient_credits, idempotency_conflict, rate_limited, not_found
บางโหมดต้องใช้การอัปโหลด reference ผ่าน Files API