模型 API 接入文档
Seedance 2.0 Fast API 接入文档
通过 Rivya Public API v1 调用 Seedance 2.0 Fast,包含模型 ID seedance-2-fast、输入类型、参数、Files API 规则、积分和响应示例。
API 可调用文本输入可用视频
API 模型 ID
seedance-2-fast
输入类型
text
Files API
最小请求不需要
基础积分
140
能力类型
视频
计费方式
FIXED
提示词上限
2500 字符
请求字段
模型 ID 放在顶层字段。模型专属控制项放入 params。
| Key | 类型 | 必填 | 默认值 | 说明 |
|---|---|---|---|---|
| model | string | 是 | seedance-2-fast | 使用 seedance-2-fast 作为 API 模型 ID。 |
| prompt | string | 是 | - | 这个模型最多 2500 个字符。 |
| params | object | 否 | - | 模型专属参数对象。可用 key 见下方参数表。 |
| client_request_id | string | 否 | - | 可选客户端请求 ID,便于你在自己的系统中追踪请求。 |
模型参数
| Key | 类型 | 必填 | 默认值 | 范围 | 枚举值 | 说明 |
|---|---|---|---|---|---|---|
| seedance_scene | select | 否 | text | - | text, frames, reference | 决定 Seedance 2 Fast 当前走哪条生成路径:文生视频、首帧 / 首尾帧驱动,或多模态参考生成。 |
| 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 检查 |
最小请求
{
"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"
}
}创建响应
创建接口会返回公开任务 ID。继续轮询状态接口,直到任务成功或失败。
{
"id": "task_seedance_2_fast_example",
"status": "queued",
"model": "seedance-2-fast",
"reserved_credits": 140,
"final_credits": 0,
"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
创建接口会返回公开任务 ID。继续轮询状态接口,直到任务成功或失败。