Public Model / seedance

Seedance 2 API pricing

Video generation with 4 to 15 second outputs, 480p through 4K, audio, and reference-video controls.

Availability
Available
Tasks
Create Video
Published rates from
$0.0575

Request calculator

Configure Seedance 2

Controls and rates come directly from the checked public catalog.

Interactive calculator

Price a direct generation

Choose a task, configure its inputs, and see the current catalog price.

Step 1

Choose a generation type

Step 2

Configure generation

Model
Seedance 2
Output duration8s
4s15s
Resolution720p
Reference videoNone
Generate audioOnAudio generation does not change the current price.
Outputs1

Step 3

Reference total

$1.641 output at $1.64 each
Generation
$1.648 seconds x $0.205
Minimum request
$0.345
Get started

The API estimate for your exact request is authoritative before paid work starts.

Best fit

Use Seedance 2 when a production needs the widest Seedance resolution range or a reference-led clip with explicit duration pricing.

Use cases

  • 4K product sequences
  • Reference-video recreation

Know before building

  • Reference-video requests bill against output duration plus total reference-video length.

Generated contract

Tasks, controls, and rates

Published rates

video.create
Varies by output duration, resolution, total reference video length
$0.0575 / second$0.345 minimum

Request controls

video.createAspect ratio16:9 · 9:16 · 4:3 · 3:4 · 1:1 · 21:9
video.createDuration seconds4 · 5 · 6 · 7 · 8 · 9 · 10 · 11 · 12 · 13 · 14 · 15
video.createFirst frameMedia or structured input
video.createGenerate audioDefault: true
video.createLast frameMedia or structured input
video.createPromptText input
video.createReference audioUp to 3 items
video.createReference imagesUp to 9 items
video.createReference videosUp to 3 items
video.createResolution480p · 720p · 1080p · 4K

Lifecycle: queued -> running -> succeeded -> failed -> cancelled -> manual_review

Output fields: assets

Runnable examples

Estimate first, then create

Both requests use the same normalized task, model, and input payload. Creating work requires an API key and idempotency key.

1. Estimate

curl https://api.entirefeed.com/v1/estimate \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
  "task": "video.create",
  "model": "seedance-2",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 8,
    "generate_audio": true,
    "resolution": "720p",
    "prompt": "A cinematic product reveal with a slow orbit and natural sound"
  }
}'

2. Create

curl https://api.entirefeed.com/v1/generations \
  -X POST \
  -H "Authorization: Bearer $ENTIREFEED_API_KEY" \
  -H "Idempotency-Key: seedance-2-example-001" \
  -H "Content-Type: application/json" \
  -d '{
  "task": "video.create",
  "model": "seedance-2",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 8,
    "generate_audio": true,
    "resolution": "720p",
    "prompt": "A cinematic product reveal with a slow orbit and natural sound"
  }
}'