字节跳动 Seedance 2.0 最全能渠道(晨语)。文生 / 图生(首帧·首尾帧)/ 多模态参考(最多 9 图 + 视频 + 音频 + 原生音频)。是唯一可直接吃真人脸的渠道(账号已备案),无需素材库。标准版 480p/720p/1080p,Fast 更快更省(480p/720p)。
名字很像但来源和能力不同。你在看的是高亮那行。
| 模型 | 渠道 | 真人 | 价格 |
|---|---|---|---|
| Seedance 2.0 ← | 晨语 · 真人多模态 | 直接支持真人脸 | $0.11–$0.33/秒 |
| Seedance 2.0 Official | 火山官方直连 | 经素材库 asset:// | 按 token 结算 |
| Seedance 2.0 (sd-A) | 定制版A · Topaz 高清 | 经素材库 asset:// | $0.073–$0.365/秒 |
| Seedance 2.0 Lite | 低价娱乐向 | 自带人像库 | $0.04–$0.15/秒 |
| Seedance 2.0 Cinematic | RunningHub 影视级 | — | $1 / $2 / $3 |
Authorization: Bearer YOUR_API_KEY| 字段 | 必填 | 类型 | 说明 |
|---|---|---|---|
| 模型 | API name | 分辨率 | $/秒 |
| Seedance 2.0 | seedance-2.0 | 480p / 720p / 1080p | $0.13 / $0.26 / $0.33 |
| Seedance 2.0 Fast | seedance-2.0-fast | 480p / 720p | $0.11 / $0.22 |
计费 = $/秒 × 时长(4-15 秒),仅成功扣费、失败退款。
/api/v1/video/generations# Text-to-video (model: seedance-2.0 / seedance-2.0-fast)
curl -X POST https://apimodels.app/api/v1/video/generations \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0",
"prompt": "a hummingbird hovering near a bright flower, slow motion",
"resolution": "720p",
"aspect_ratio": "16:9",
"duration": 5
}'
# Real-person / multimodal — this channel accepts REAL faces directly (no asset://):
# "images": ["https://.../face.jpg", ...(≤9)], "real_person": true
# Image-to-video: "first_frame_url" (+ "last_frame_url" for first+last)
# Reference video/audio: "videos": [...], "audios": [...]
# Poll for the result
curl "https://apimodels.app/api/v1/video/generations?task_id=TASK_ID" -H "Authorization: Bearer YOUR_API_KEY"| 字段 | 必填 | 类型 | 说明 |
|---|---|---|---|
| 字段 | 类型 | 说明 | |
| model | string | "seedance-2.0" / "seedance-2.0-fast" | |
| prompt | string | 提示词(有参考输入时可选),≥3 字符 | |
| resolution | string | 480p / 720p / 1080p (fast: 480p/720p) | |
| aspect_ratio | string | adaptive / 16:9 / 4:3 / 1:1 / 3:4 / 9:16 / 21:9 | |
| duration | number | 4-15 秒,默认 5 | |
| images | string[] | 多模态参考图,最多 9 张(含真人) | |
| real_person | boolean | 参考含真人时设 true(触发审核) | |
| first_frame_url / last_frame_url | string | 图生视频首/尾帧 | |
| videos / audios | string[] | 参考视频 / 音频 |
试一试:Playground