YeeHooDevelopers
Developer Docs
Supported Models and ParametersVideo Models

Seedance 2.5

Parameters, enums, frame controls, and audio behavior for seedance-2-5.

seedance-2-5 is video generation from 4 to 15 seconds and 480p through 1080p. Its backend model schema is the source of truth for supported parameters.

Quick Facts

ItemValue
Model IDseedance-2-5
TypeVideo
RegionGlobal / CN
Best Forvideo generation from 4 to 15 seconds and 480p through 1080p

Recommended Request Shape

Call POST /v1/quote first and send exactly the same parameters when creating the task.

{
  "model": "seedance-2-5",
  "prompt": "A cinematic product reveal",
  "duration": 5,
  "resolution": "720p",
  "aspect_ratio": "16:9",
  "generate_audio": true
}

Field Reference

FieldTypeRequiredDefaultDescription
modelstringYes-Must be seedance-2-5
promptstringYes-Video prompt
reference_imagesstring[]No-Reference image URLs
first_frame_image_urlstringNo-First-frame image URL
last_frame_image_urlstringNo-Last-frame image URL
durationintegerNo5Output duration
resolutionstringNo720pOutput resolution
aspect_ratiostringNo16:9Frame ratio
generate_audiobooleanNotrueWhether to generate audio

Supported Enums

FieldValues
duration4 through 15
resolution480p 720p 1080p
aspect_ratio21:9 16:9 4:3 1:1 3:4 9:16

Seedance 2.5 Integration Notes

  • has_video_input is server-derived and must not be supplied by clients.
  • Do not send fields absent from the model schema; use the live GET /v1/models response as authoritative.

Smallest Example

{
  "model": "seedance-2-5",
  "prompt": "A cinematic product reveal"
}

Related Pages