A lightweight ByteDance video generation model offering text-to-video and image-to-video support for 4-12 second videos at 480p, 720p, or 1080p resolution.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-1-lite",
"input": {
"prompt": "a woman walks in the park",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt | string | Yes | - | Text prompt for video generation |
fps | integer | No | 24 | Frame rate (frames per second) 24 |
seed | integer | No | - | Random seed for reproducible generation |
image | string | No | - | Input image for image-to-video generation |
duration | integer | No | 5 | Video duration in seconds (4-12). Billed per second of output |
resolution | string | No | 720p | Video resolution 480p720p1080p |
aspect_ratio | string | No | 16:9 | Video aspect ratio. Ignored if an image is used 16:94:31:13:49:1621:99:21 |
camera_fixed | boolean | No | false | Whether to fix camera position |
last_frame_image | string | No | - | Last frame image (requires a first frame image) |
reference_images | array | No | - | Reference images (1-4) for character/avatar/environment consistency. Not compatible with 1080p or first/last frame images |
There are 3 ways to provide files for the imagelast_frame_imagereference_images parameters:
Attach files directly to POST /v1/predictions/upload. No separate upload step needed.
curl -X POST "https://api.core.today/v1/predictions/upload" \
-H "X-API-Key: cdt_your_api_key" \
-F "model=bytedance/seedance-1-lite" \
-F 'input={"prompt":"your prompt here"}' \
-F "file:image=@your_file.png"Pass a publicly accessible URL directly. You can also use file_url from the Storage API.
{
"model": "bytedance/seedance-1-lite",
"input": {
"prompt": "your prompt here",
"image": "https://example.com/image.jpg"
}
}Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Simple text-to-video generation at the default 720p resolution
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-1-lite",
"input": {
"prompt": "a woman walks in the park",
"duration": 5,
"resolution": "720p",
"aspect_ratio": "16:9"
}
}'Higher resolution, longer 10-second clip for higher-quality output
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "bytedance/seedance-1-lite",
"input": {
"prompt": "a golden retriever puppy running along a sunny beach, waves rolling in behind it",
"duration": 10,
"resolution": "1080p",
"aspect_ratio": "16:9"
}
}'POST /v1/predictions