Skip to main content
ByteDanceFastStandard

Seedance 1 Lite

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.

420 credits
per 5s 720p video โ€” billed per second (480p 42/s, 720p 84/s, 1080p 168/s)
Text-to-video and image-to-video generation in one model
4-12 second duration range with per-second billing
480p / 720p / 1080p resolution options
Reference images (1-4) for character, avatar, or environment guidance
Fixed-camera mode and last-frame conditioning

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

Quick Start

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"
  }
}'

Parameters

ParameterTypeRequiredDefaultDescription
promptstringYes-Text prompt for video generation
fpsintegerNo24Frame rate (frames per second)
24
seedintegerNo-Random seed for reproducible generation
imagestringNo-Input image for image-to-video generation
durationintegerNo5Video duration in seconds (4-12). Billed per second of output
resolutionstringNo720pVideo resolution
480p720p1080p
aspect_ratiostringNo16:9Video aspect ratio. Ignored if an image is used
16:94:31:13:49:1621:99:21
camera_fixedbooleanNofalseWhether to fix camera position
last_frame_imagestringNo-Last frame image (requires a first frame image)
reference_imagesarrayNo-Reference images (1-4) for character/avatar/environment consistency. Not compatible with 1080p or first/last frame images

How to Provide File Input

There are 3 ways to provide files for the imagelast_frame_imagereference_images parameters:

Recommended

Direct Upload (Multipart)

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"

Image URL

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"
  }
}
See the File Upload docs for more upload methods including Presigned URLs.

Common Parameters

Common parameters used when calling POST /v1/predictions.

ParameterTypeRequiredDefaultDescription
modelstringYes-Model identifier
inputobjectYes-Object containing the model-specific parameters from the table above
output_folderstringNo-Folder path for output files (max 256 chars, '..' not allowed)
webhook_urlstringNo-Webhook URL to call on completion
is_publicbooleanNofalseIf true, output files are also available via permanent public URLs

Examples

Text-to-Video (720p)

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"
  }
}'

1080p Long-Form Clip

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"
  }
}'

Tips & Best Practices

1Billing is per second of output โ€” start at 720p / 5s while iterating on prompts
21080p costs 2x the 720p rate and disables reference_images โ€” use it for final renders only
3Reference images (1-4) help keep characters/products consistent across generations
4Duration can range from 4 to 12 seconds; the default 5s is the cheapest common choice

Use Cases

Short-form social clips from a text prompt
Animating a product or portrait photo into a brief video
Character-consistent shots using reference images
Fast, low-cost previews before using the Pro tier
Fixed-camera product showcase shots