Bytedance Seedance 2.0 Fast Text To Video
Playground
Try it on WavespeedAI!Seedance 2.0 Fast (Text-to-Video) generates cinematic videos from text prompts with native audio-visual synchronization, director-level camera and lighting control, and exceptional motion stability — optimized for faster generation at lower cost. Built on Seed’s unified multimodal architecture.
Features
Seedance 2.0 Fast Text-to-Video
Seedance 2.0 Fast is the speed-optimized version of Seed’s latest video generation model. The Text-to-Video mode generates cinematic videos from text prompts with native audio synchronization — faster and at 33% lower cost than the standard version, ideal for rapid iteration and high-volume production.
Key Features
-
Speed-optimized generation Faster processing for quick turnaround on video projects, perfect for iteration and prototyping.
-
33% lower cost $0.80 per 5 seconds vs $1.20 for the standard version — ideal for high-volume production.
-
Unified multimodal architecture Same Seedance 2.0 foundation handling text, image, audio, and video inputs.
-
Native audio-visual synchronization Generates video with synchronized audio in a single pass.
-
Director-level control Camera movement, lighting, shadows, and character performance controlled through prompts.
-
Strong motion stability Coherent motion with stable subjects and fluid transitions.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Detailed description of the cinematic scene |
| aspect_ratio | No | Output format: 16:9 (default), 9:16, 4:3, 3:4, 1:1, 21:9 |
| duration | No | Video length in seconds: 4-15 (default: 5) |
| resolution | No | Output resolution: 480p, 720p (default), or 1080p |
| reference_images | No | Reference image URLs to guide style, characters, or composition |
| reference_videos | No | Reference video URLs (total length must not exceed 15 seconds) |
| reference_audios | No | Reference audio URLs (total length must not exceed 15 seconds) |
How to Use
- Write your prompt — describe the scene with cinematic detail.
- Select aspect ratio — 16:9 for widescreen, 9:16 for vertical, 4:3 or 3:4 for classic formats.
- Set duration — choose any duration from 4 to 15 seconds.
- Optionally add references — provide reference images, videos, or audios for style guidance.
- Run — submit and download your video.
Pricing
| Resolution | Duration | Without Reference Videos | With Reference Videos |
|---|---|---|---|
| 480p | 5 s | $0.50 | $1.00 |
| 480p | 10 s | $1.00 | $2.00 |
| 480p | 15 s | $1.50 | $3.00 |
| 720p | 5 s | $1.00 | $2.00 |
| 720p | 10 s | $2.00 | $4.00 |
| 720p | 15 s | $3.00 | $6.00 |
| 1080p | 5 s | $2.50 | $5.00 |
| 1080p | 10 s | $5.00 | $10.00 |
| 1080p | 15 s | $7.50 | $15.00 |
Billing Rules
- Base rate (480p): $0.50 per 5 seconds (without reference videos), $1.00 with reference videos (2x base)
- 720p: 2x the 480p price
- 1080p: 5x the 480p price (2.5x the 720p price)
- Duration range: 4-15 seconds (continuous)
Best Use Cases
- Rapid Prototyping — Quickly iterate on concepts before committing to the standard version.
- High-Volume Production — Cost-effective generation for large content libraries.
- Social Media Content — Fast turnaround for short-form video needs.
- A/B Testing — Generate multiple variations efficiently to find the best creative direction.
Pro Tips
- Use Fast for iteration and testing, switch to standard Seedance 2.0 for final quality.
- Write prompts like a film director — include lighting, camera angles, and mood.
- Start with 5s to iterate, then extend once the look is right.
Notes
- Native audio generation included.
- Duration range: 4-15 seconds (continuous).
- For highest quality output, consider the standard Seedance 2.0.
Related Models
- Seedance 2.0 Text-to-Video — Standard version with highest quality.
- Seedance 2.0 Fast Image-to-Video — Fast image-guided video generation.
- Seedance 2.0 Image-to-Video — Standard image-guided video generation.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-2.0-fast/text-to-video" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"enable_web_search": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | Describe the scene, action, camera movement, and mood for the video. | |
| reference_images | array | No | - | - | Reference image URLs to guide visual style, characters, or scene composition. |
| reference_videos | array | No | - | - | Reference video URLs (total length must not exceed 15 seconds). |
| reference_audios | array | No | - | - | Reference audio URLs (total length must not exceed 15 seconds). |
| aspect_ratio | string | No | 16:9 | 16:9, 9:16, 4:3, 3:4, 1:1, 21:9 | The aspect ratio of the generated video. |
| resolution | string | No | 720p | 480p, 720p, 1080p | The output video resolution. |
| duration | integer | No | 5 | 4 ~ 15 | The duration of the generated video in seconds (4-15s). |
| enable_web_search | boolean | No | false | - | Enable web search for real-time information. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | object | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |