Skip to main content
Seedance 1.0 Pro t2v is a text-to-video generation model from ByteDance’s Seedance series, available through AnyFast API.

Key capabilities

  • Text-to-Video — Generate videos purely from text prompts
  • Flexible Duration — 2–12 second videos
  • Multiple Ratios — 16:9, 4:3, 1:1, 3:4, 9:16, 21:9
  • Multiple Resolutions — 480p, 720p, 1080p

Quick example

curl https://www.anyfast.ai/v1/video/generations \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "doubao-seedance-1-0-pro-250528",
    "content": [
      {"type": "text", "text": "A cat walking through sunflowers at golden hour"}
    ],
    "ratio": "16:9",
    "duration": 5,
    "resolution": "720p"
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be doubao-seedance-1-0-pro-250528
contentarrayYesArray with text item only
ratiostringNo16:9, 4:3, 1:1, 3:4, 9:16, 21:9. Default: 16:9
resolutionstringNo480p, 720p, 1080p. Default: 720p
durationintegerNo2–12 seconds. Default: 5
watermarkbooleanNoDefault: false
seedintegerNoRandom seed
camera_fixedbooleanNoDefault: false

API Reference

View the interactive API playground for Seedance 1.0 Pro t2v.