Public Model / seedance

Seedance 2 Mini API pricing

The lowest-rate Seedance option for 480p and 720p video generation.

Availability
Available
Tasks
Create Video
Published rates from
$0.03

Request calculator

Configure Seedance 2 Mini

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 Mini
Output duration8s
4s15s
Resolution720p
Reference videoNone
Generate audioOnAudio generation does not change the current price.
Outputs1

Step 3

Reference total

$0.821 output at $0.82 each
Generation
$0.828 seconds x $0.1025
Minimum request
$0.18
Get started

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

Best fit

Use Seedance 2 Mini for cost-sensitive short-form production that still needs audio and reference-video controls.

Use cases

  • Bulk social variants
  • Low-cost motion tests

Know before building

  • Resolution is limited to 480p or 720p, with reference duration included in billable usage.

Generated contract

Tasks, controls, and rates

Published rates

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

Request controls

video.createAspect ratio16:9 · 9:16 · 4:3 · 3:4 · 1:1 · 21:9 · adaptive
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

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-mini",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 8,
    "generate_audio": true,
    "resolution": "720p",
    "prompt": "A concise vertical product teaser with a simple studio move"
  }
}'

2. Create

curl https://api.entirefeed.com/v1/generations \
  -X POST \
  -H "Authorization: Bearer $ENTIREFEED_API_KEY" \
  -H "Idempotency-Key: seedance-2-mini-example-001" \
  -H "Content-Type: application/json" \
  -d '{
  "task": "video.create",
  "model": "seedance-2-mini",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 8,
    "generate_audio": true,
    "resolution": "720p",
    "prompt": "A concise vertical product teaser with a simple studio move"
  }
}'