异步视频管线
一次 createTask 后轮询 recordInfo,适合队列与批量任务。
在集成前用 Playground 验证提示词与参数,输出与生产 API 一致。
createTask 的 input 字段说明(默认 Tab)。
| 字段 | 类型 | 必填 |
|---|---|---|
| prompt | textarea | 是 |
| aspect_ratio | select (16:9 | 9:16 | 4:3 | 1:1 | 3:4 | 21:9) | 否 |
| first_frame_url | file | 否 |
| last_frame_url | file | 否 |
| reference_image_urls | url-list | 否 |
| reference_video_urls | url-list | 否 |
| reference_audio_urls | url-list | 否 |
| resolution | select (480p | 720p) | 否 |
| duration | number | 否 |
| generate_audio | switch | 否 |
| web_search | switch | 否 |
| nsfw_checker | switch | 否 |
典型生成效果预览(实际输出因提示词而异)。
团队选择该模型用于生产工作流的原因。
一次 createTask 后轮询 recordInfo,适合队列与批量任务。
在模型支持时,可组合提示词与参考图、首尾帧或音频。
仅成功任务扣积分,失败可安全重试。
该模型在 ModKie 网关下的核心能力。

通过 first/last frame 与参考图/视频控制镜头运动与一致性。
与同系列其他模型的差异与适用场景。

Seedance 2 Mini 优化生产管线的按秒成本,并支持丰富的首尾帧与参考条件。Seedance 2 Fast 则牺牲部分条件控制能力,换取更高生成速度。
开发者与产品团队常见的 API 使用场景。
将脚本与提示词转为竖屏短片,用于 Reels、Shorts 与 TikTok。
由产品静图生成轻量动效宣传片段。
用统一的 Kie 兼容 jobs 契约嵌入到你自己的产品中。
按成功任务扣积分;下方为单次任务估算。
共享 API
30 积分 / 次
约 $0.15 USD(按 $0.01 USD/积分 套餐汇率)
按秒计费,720p 5 秒典型约 50 积分起。
从 API Key 到首次成功任务的三步流程。
创建 API Key
登录后在 设置 → API Keys 创建密钥。
提交 createTask
向 /api/v1/jobs/createTask 发送模型 ID 与 input 载荷。
轮询 recordInfo
轮询 recordInfo 直至任务完成,从响应中获取输出。
createTask 请求示例
curl -X POST https://modkie.com/api/v1/jobs/createTask \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-2-mini",
"input": {
"prompt": "First-person kitchen baking vlog, slight wide-angle, immersive handheld feel, no faces shown throughout, only hands and arms visible, perspective reference @Image 1. Shot 1: Overhead view, two hands open a cookbook on the kitchen island, the page content is @Image 2, morning light streams in, slight shaky documentary feel. Shot 2: Camera pointing straight down, two hands knead, press, and fold dough on a floured countertop, flour scattering, close-up textured details. Shot 3: Two hands lift the prepared unbaked apple pie up to the camera for display, apple pie reference @Image 3. Shot 4: Black screen with countdown text: “200°C 30mins”. Shot 5: Return to first-person perspective, two hands pick up the freshly baked steaming apple pie, golden flaky crust, warm lighting atmosphere.",
"aspect_ratio": "16:9",
"duration": 5,
"resolution": "720p",
"generate_audio": true,
"web_search": false,
"nsfw_checker": true,
"first_frame_url": "/playground/samples/seedance-2-mini/first.webp",
"last_frame_url": "/playground/samples/seedance-2-mini/last.webp"
}
}'轮询 GET /api/v1/jobs/recordInfo?taskId=… 直至 success 或 fail。仅成功任务扣积分。
ModKie 不仅是 API 转接 — 还可部署、微调,并将自定义端点注册到同一网关。
一个 API Key 与 jobs 契约,覆盖市场模型与自托管模型。
上线前在浏览器内验证请求载荷。
部署 HuggingFace 或自定义 Worker,经 ModKie 路由流量。
视觉模型微调后将权重注册回网关。
与团队协作完成模型落地、集成与生产上线。