Bytedance
Bytedance 模型通过一个统一的异步任务 API 调用。用 POST /api/generate 发起任务,再轮询 GET /api/generate/{taskId} 直到完成。本系列提供 6 个端点。
概览
每个端点共享相同的外层结构 —— 只有 model 和 input 字段不同。可在模型市场的 playground 中运行任意一个。
认证
在 /api-keys 创建 API 密钥,然后作为 Bearer token 发送。已登录时从浏览器发起的请求也可通过会话 cookie 生效。
Authorization: Bearer <YOUR_API_KEY>创建任务
POST https://api.lithovas.com/api/generate请求体:{ "model": "<slug>", "input": { … } }
响应:{ "taskId": "<id>", "state": "waiting" }
查询结果
GET https://api.lithovas.com/api/generate/<taskId>响应:{ "taskId", "state": "waiting" | "success" | "fail", "resultUrls": [ … ], "creditsConsumed", "failMsg", "balance" }
state 变为 success 或 fail。失败任务不计费。端点
| 模型 | 任务 | model slug |
|---|---|---|
| Seedance 1.5 Pro | Image to Video | bytedance/seedance-1-5-pro |
| Seedance V1 Pro Fast | Image to Video | bytedance/v1-pro-fast-image-to-video |
| Seedance V1 Pro | Image to Video | bytedance/v1-pro-image-to-video |
| Seedance V1 Pro | Text to Video | bytedance/v1-pro-text-to-video |
| Seedance V1 Lite | Image to Video | bytedance/v1-lite-image-to-video |
| Seedance V1 Lite | Text to Video | bytedance/v1-lite-text-to-video |
Seedance 1.5 Pro · Image to Video
bytedance/seedance-1-5-propromptstring必填Text prompt for video generation (3-20000 chars)
input_urlsarray<string>可选0-2 image URLs for image-to-video generation
aspect_ratioenum<string>必填Video aspect ratio configuration
resolutionenum<string>可选Video resolution quality level
durationnumber必填Video duration in seconds (4-12s range)
fixed_lensboolean可选Lock camera for static shots vs dynamic movement
generate_audioboolean可选Generate audio track (increases cost)
nsfw_checkerboolean可选Content filtering enabled/disabled flag
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/seedance-1-5-pro",
"input": {
"prompt": "Animate the image with natural motion, subtle camera movement, and cinematic lighting.",
"input_urls": [
"https://example.com/file"
],
"aspect_ratio": "1:1",
"resolution": "720p",
"duration": 5,
"fixed_lens": false,
"generate_audio": false,
"nsfw_checker": false
}
}'Seedance V1 Pro Fast · Image to Video
bytedance/v1-pro-fast-image-to-videopromptstring必填Text prompt for video generation (max 10000 chars)
image_urlstring必填URL of image to generate video from (JPEG/PNG/WebP, max 10MB)
resolutionenum<string>可选Output video resolution quality level
durationenum<string>可选Video length in seconds
nsfw_checkerboolean可选Enable content filtering; disabling returns unfiltered output
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/v1-pro-fast-image-to-video",
"input": {
"prompt": "Animate the image with natural motion, subtle camera movement, and cinematic lighting.",
"image_url": "https://example.com/input.jpg",
"resolution": "720p",
"duration": "5",
"nsfw_checker": false
}
}'Seedance V1 Pro · Image to Video
bytedance/v1-pro-image-to-videopromptstring必填Text prompt used to generate the video (max 10000 chars)
image_urlstring必填URL of the image used to generate video (max 10MB)
resolutionenum<string>可选Video resolution for quality/speed tradeoff
durationenum<string>可选Duration of the video in seconds
camera_fixedboolean可选Whether to fix the camera position during generation
seednumber可选Random seed for reproducibility; -1 for random
enable_safety_checkerboolean可选Safety checker always enabled in Playground; disable via API
nsfw_checkerboolean可选Disable content filtering when false; results returned directly
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/v1-pro-image-to-video",
"input": {
"prompt": "Animate the image with natural motion, subtle camera movement, and cinematic lighting.",
"image_url": "https://example.com/input.jpg",
"resolution": "720p",
"duration": "5",
"camera_fixed": false,
"seed": -1,
"enable_safety_checker": false,
"nsfw_checker": false
}
}'Seedance V1 Pro · Text to Video
bytedance/v1-pro-text-to-videopromptstring必填Text prompt for video generation (max 10000 chars)
aspect_ratioenum<string>可选Video aspect ratio
resolutionenum<string>可选Output resolution (480p fastest, 1080p highest quality)
durationenum<string>可选Video length in seconds
camera_fixedboolean可选Lock camera position during generation
seednumber可选Random seed for generation consistency (-1 for random)
enable_safety_checkerboolean可选Enable content safety filtering
nsfw_checkerboolean可选Disable content filtering if set to false
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/v1-pro-text-to-video",
"input": {
"prompt": "A cinematic red panda surfing through neon rain at dusk.",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": "5",
"camera_fixed": false,
"seed": -1,
"enable_safety_checker": false,
"nsfw_checker": false
}
}'Seedance V1 Lite · Image to Video
bytedance/v1-lite-image-to-videopromptstring必填Text prompt for video generation (max 10000 chars)
image_urlstring必填URL of input image (JPEG/PNG/WebP, max 10MB)
resolutionstring可选Video output resolution
durationstring可选Video length in seconds
camera_fixedboolean可选Whether to fix camera position during generation
seednumber可选Random seed for reproducibility (-1 for random)
enable_safety_checkerboolean可选Enable safety content filtering
end_image_urlstring可选Optional URL for final video frame (JPEG/PNG/WebP, max 10MB)
nsfw_checkerboolean可选Disable content filtering when set to false
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/v1-lite-image-to-video",
"input": {
"prompt": "Animate the image with natural motion, subtle camera movement, and cinematic lighting.",
"image_url": "https://example.com/input.jpg",
"resolution": "720p",
"duration": "5",
"camera_fixed": false,
"seed": -1,
"enable_safety_checker": false,
"end_image_url": "https://example.com/input.jpg",
"nsfw_checker": false
}
}'Seedance V1 Lite · Text to Video
bytedance/v1-lite-text-to-videopromptstring必填Text prompt for video generation (max 10000 chars)
aspect_ratioenum<string>可选Video aspect ratio
resolutionenum<string>可选Video resolution (480p faster, 720p higher quality)
durationenum<string>可选Duration of video in seconds
camera_fixedboolean可选Whether to fix the camera position
seedinteger可选Random seed for generation control; use -1 for random
enable_safety_checkerboolean可选Enable safety content filtering (always on in Playground)
nsfw_checkerboolean可选Disable content filtering when false; model returns results directly
curl -X POST https://api.lithovas.com/api/generate \
-H "Authorization: Bearer $API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "bytedance/v1-lite-text-to-video",
"input": {
"prompt": "A cinematic red panda surfing through neon rain at dusk.",
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": "5",
"camera_fixed": false,
"seed": 42,
"enable_safety_checker": false,
"nsfw_checker": false
}
}'