Skip to main content
Seedance 1.0 Lite Text-to-Video is a video generation model from ByteDance’s Seedance series, available through the Starrise AI API. It uses a multimodal content format to create videos from text prompts and reference images.

Key Capabilities

  • Text-to-video — Generate videos from text prompts
  • Flexible duration — Generate 2–12 second videos
  • Multiple aspect ratios — 16:9, 4:3, 1:1, 3:4, 9:16, 21:9
  • Multiple resolutions — 480p, 720p, 1080p

Quick Example

curl https://ai.alad.com/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedance-1-0-lite-t2v-250428",
    "content": [
      {"type": "text", "text": "A cat walking through a sunflower field under a golden sunset"}
    ],
    "ratio": "16:9",
    "duration": 5,
    "resolution": "720p"
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be doubao-seedance-1-0-lite-t2v-250428
contentarrayYesMultimodal array: text (required) + image_url (for image-to-video, with role)
ratiostringNo16:9, 4:3, 1:1, 3:4, 9:16, 21:9, adaptive, default 16:9
resolutionstringNo480p, 720p, 1080p, default 720p
durationintegerNo2–12 seconds, default 5
watermarkbooleanNoWhether to add a watermark, default false
seedintegerNoRandom seed for reproducibility
camera_fixedbooleanNoWhether to fix the camera, default false

API Reference

View the interactive API Playground for Seedance 1.0 Lite Text-to-Video.