Public Model / seedance
Seedance 2 Fast API pricing
Seedance video generation for 480p and 720p outputs with the same duration and reference controls.
- Availability
- Available
- Tasks
- Create Video
- Published rates from
- $0.045
Request calculator
Configure Seedance 2 Fast
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 Fast
Reference videoNone
Generate audioOnAudio generation does not change the current price.
Outputs1
Step 3
Reference total
- Generation
- $1.328 seconds x $0.165
- Minimum request
- $0.27
The API estimate for your exact request is authoritative before paid work starts.
Best fit
Use Seedance 2 Fast for repeated 4 to 15 second campaign iterations that do not require 1080p output.
Use cases
- 720p concept iterations
- Reference-led social clips
Know before building
- Resolution is limited to 480p or 720p.
Generated contract
Tasks, controls, and rates
Published rates
- video.create
- Varies by output duration, resolution, total reference video length
- $0.045 / second$0.27 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
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-fast",
"input": {
"aspect_ratio": "9:16",
"duration_seconds": 8,
"generate_audio": true,
"resolution": "720p",
"prompt": "A quick vertical product demo with energetic camera movement"
}
}'2. Create
curl https://api.entirefeed.com/v1/generations \
-X POST \
-H "Authorization: Bearer $ENTIREFEED_API_KEY" \
-H "Idempotency-Key: seedance-2-fast-example-001" \
-H "Content-Type: application/json" \
-d '{
"task": "video.create",
"model": "seedance-2-fast",
"input": {
"aspect_ratio": "9:16",
"duration_seconds": 8,
"generate_audio": true,
"resolution": "720p",
"prompt": "A quick vertical product demo with energetic camera movement"
}
}'