Skip to content
Docs menu

Video models

Seedance V1

On this page

Seedance V1 — high-quality AI video generation.

modelIdbytedance-v1-pro-image-to-video
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationEndpointDescription
Text to videoPOST /api/v1/generateBase generation from a text prompt.
Image to videoPOST /api/v1/generateCondition on a reference image — upload it via /api/v1/files/upload and pass the URL.
Poll taskGET /api/v1/task/{id}?model=bytedance-v1-pro-image-to-videoRetrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
prompttextarearequiredDescribe the video you want to generate...
image_urlimagerequiredDrag and drop or click to upload your file
resolutionselectoptional480p, 720p, 1080p
durationselectoptional5, 10
camera_fixedselectoptionalfalse, true
seednumberoptional
enable_safety_checkerselectoptionalfalse, true
nsfw_checkerselectoptionalfalse, 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-v1-pro-image-to-video","input":{"prompt":"Slow cinematic push-in, gentle ambient motion, softly shifting light, and subtle parallax for a lifelike, atmospheric feel.","resolution":"720p","duration":"5","camera_fixed":"false","seed":-1,"enable_safety_checker":"true","nsfw_checker":"true"}}'