Seedance 2.0

AI Video Generation Model

Video $$$$ · 18.1¢

ByteDance's flagship video model with text-to-video, image-to-video, and reference-to-video (multi-image/video/audio) generation, cinematic output, native synchronized audio, multi-shot editing, and director-level camera control.

15 seconds
Max Video Duration
Supported Modes
Text to Video Image to Video Video to Video
Active

Details

Model ID
seedance-2.0
Also known as: seedance-2-0, seedance-2
Creator
Family
seedance
Max Input Images
9
Tags
video-generation text-to-video image-to-video video-to-video audio-generation
// Get Started

Ready to integrate?

Access seedance-2.0 via our unified API.

Create Account
Available at 1 provider

Starting from

$0.181 /second via fal.ai

Prices shown are in USD

Full pricing details

Providers & Pricing (3)

Seedance 2.0 is available from 3 providers, with per-video pricing starting at $0.1814 through fal.ai.

fal.ai
Video to Video
fal/seedance-2.0-r2v
$0.181 /second
fal.ai
Image to Video
fal/seedance-2.0-i2v

Output

Second 720p
$0.302
View official pricing • As of
fal.ai
Text to Video
fal/seedance-2.0

Output

Second 720p
$0.303
View official pricing • As of

seedance-2-0 API Async video generation

Base URL
https://api.lumenfall.ai/v1
Model
seedance-2.0

Code Examples

Text to Video

/v1/videos/generations
# Step 1: Submit video generation request
VIDEO_ID=$(curl -s -X POST \
  https://api.lumenfall.ai/v1/videos \
  -H "Authorization: Bearer $LUMENFALL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0",
    "prompt": "",
    "size": "1024x1024"
  }' | jq -r '.id')
echo "Video ID: $VIDEO_ID"
# Step 2: Poll for completion
while true; do
  RESULT=$(curl -s \
    https://api.lumenfall.ai/v1/videos/$VIDEO_ID \
    -H "Authorization: Bearer $LUMENFALL_API_KEY")
  STATUS=$(echo $RESULT | jq -r '.status')
  echo "Status: $STATUS"
  if [ "$STATUS" = "completed" ]; then
    echo $RESULT | jq -r '.output.url'
    break
  elif [ "$STATUS" = "failed" ]; then
    echo $RESULT | jq -r '.error.message'
    break
  fi
  sleep 5
done

Image to Video

/v1/videos/generations

Video to Video

/v1/videos/generations

Parameter Normalization

How we handle parameters across different providers

Not every provider speaks the same language. When you send a parameter, we handle it in one of four ways depending on what the model supports:

Behavior What happens Example
passthrough Sent as-is to the provider style, quality
renamed Same value, mapped to the field name the provider expects prompt
converted Transformed to the provider's native format size
emulated Works even if the provider has no concept of it n, response_format

Parameters we don't recognize pass straight through to the upstream API, so provider-specific options still work.

Seedance 2.0 FAQ

How much does Seedance 2.0 cost?

Seedance 2.0 starts at $0.1814 per video through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing.

How do I use Seedance 2.0 via API?

You can use Seedance 2.0 through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "seedance-2.0". Code examples are available in Python, JavaScript, and cURL.

Which providers offer Seedance 2.0?

Seedance 2.0 is available through fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider.

Try Seedance 2.0 in Playground

Generate images with custom prompts — no API key needed.

Open Playground