Skip to content
Docs menu

Video models

Seedance 2.0 Mini

On this page

Seedance 2.0 Mini — high-quality AI video generation.

modelIdbytedance-seedance-2-mini
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Defaultbytedance-seedance-2-miniPOST /api/v1/generate
Poll taskGET /api/v1/task/{id}?model=bytedance-seedance-2-mini

Input parameters

FieldTypeRequiredValues / example
first_frame_urlstringNoClick to upload or drag and drop images. JPG/PNG/WEBP/BMP/GIF, max 30MB each. (image URL)
last_frame_urlstringNoClick to upload or drag and drop images. JPG/PNG/WEBP/BMP/GIF, max 30MB each. (image URL)
promptstringNoThe text prompt or description for the video. Max 20000 characters. (default: Animate from the first frame: the drummer's sticks blur into a fast roll across the kit, cymbals trembling and catching the stage light, the camera pushing in tight as the tempo builds.)
reference_image_urlsstring[]NoA list of input image URLs. (image URL)
reference_video_urlsstring[]NoA list of input video URLs. Furthermore, the total length of the three videos must not exceed 15 seconds. (image URL)
reference_audio_urlsstring[]NoA list of input audio URLs. Furthermore, the total length of the three audios must not exceed 15 seconds. (image URL)
generate_audiobooleanNoWhether to generate AI audio synchronized with the video. (true/false) (default: true)
resolutionstringNoThe output video resolution. (options: 480p | 720p) (default: 720p)
aspect_ratiostringNoThe aspect ratio of the generated video. (options: 16:9 | 4:3 | 1:1 | 3:4 | 9:16 | 21:9 | adaptive) (default: 16:9)
durationnumberNoVideo duration in seconds. (range 4-15) (default: 15)
web_searchbooleanNoUse online search (true/false) (default: false)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)

Example request

bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"bytedance-seedance-2-mini","input":{"first_frame_url":"https://example.com/input.jpg","last_frame_url":"https://example.com/input.jpg","prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","reference_image_urls":["https://example.com/input.jpg"],"reference_video_urls":["https://example.com/input.mp4"],"reference_audio_urls":["https://example.com/input.mp3"],"generate_audio":true,"resolution":"480p","aspect_ratio":"16:9","duration":6,"web_search":false,"nsfw_checker":true}}'