Seedance 2.0 Fast (Real Face) API
Seedance 2.0 Fast API exposes the Fast Seedance route with the same text, image and video-reference workflows, including real-face projects.
ByteDance's technical report identifies Seedance 2.0 Fast as an accelerated variant for low-latency scenarios. APINEED preserves the Seedance task contract, supports real-person workflows on this non-Save route, and prices the supported 480p and 720p modes through its production billing expression.
Playground
Generate with Seedance 2.0 Fast (Real Face), review the output, and use the same request shape in your application.
Choose this route for the Fast model variant. APINEED does not publish a fixed latency SLA for the Fast designation. Compare Save Fast
Request preview
{
"model": "seedance-2.0-fast",
"prompt": "A cinematic 5-second shot of a designer desk at sunrise. The camera slowly pushes in, dust moves through the light, realistic reflections, no text overlay.",
"seconds": "5",
"metadata": {
"resolution": "720p",
"ratio": "16:9",
"generate_audio": false,
"watermark": false
}
}Providers
ByteDance documents the broader model capability. APINEED separately defines the model ID, endpoint, parameter whitelist, authentication, and billing behavior shown on this page.
Discount
Official Seedance 2.0 Fast API pricing varies by resolution and whether the request includes video input. All rates are shown in USD, with the APINEED prepaid price calculated at 5% off. [3]
| Resolution | Input condition | Official price | APINEED price |
|---|---|---|---|
| 480p | Includes video input | $3.28 | $3.125% off |
| Excludes video input | $5.52 | $5.255% off | |
| 720p | Includes video input | $3.28 | $3.125% off |
| Excludes video input | $5.52 | $5.255% off |
Availability
APINEED monitors Seedance 2.0 Fast API availability. Applications should preserve request and task IDs and handle upstream failures explicitly.
Accelerated generation route
The ByteDance technical report describes Fast as an accelerated variant intended to improve generation speed for low-latency scenarios. [2]
Shared multimodal foundation
Fast belongs to the Seedance 2.0 family, whose unified architecture covers text, image, audio, and video guidance with synchronized audiovisual output. [1][2]
Draft-to-final workflow
Use Fast to validate framing, action, and prompt structure, then compare selected shots with standard Seedance when final quality is the priority. [2][3]
APINEED task contract
Fast still uses seconds and metadata, returns one asynchronous task, and follows the same polling lifecycle as standard Seedance. [3]
Using Fast for an efficient iteration loop
Start with five seconds. Resolve framing and motion direction before paying for a longer final sequence.
Keep comparison prompts fixed. Use the same prompt and controls when evaluating Fast against standard Seedance.
Measure your own latency. Record queue and completion times for representative prompts instead of treating Fast as an SLA.
Quick Start
Call Seedance 2.0 Fast with the verified APINEED endpoint and model-specific request shape.
Create an API key
Store your APINEED key server-side as API_NEED_API_KEY.
export API_NEED_API_KEY=sk-apineed-v1-...Send the request
Use seedance-2.0-fast with POST /v1/videos.
curl https://apineed.com/v1/videos \
-H "Authorization: Bearer $API_NEED_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0-fast",
"prompt": "A cinematic 5-second shot of a designer desk at sunrise. The camera slowly pushes in, dust moves through the light, realistic reflections, no text overlay.",
"seconds": "5",
"metadata": {
"resolution": "720p",
"ratio": "16:9",
"generate_audio": false,
"watermark": false
}
}'Poll the task
Save task_id, then poll GET /v1/videos/{task_id} every few seconds until the task is completed or failed.
curl https://apineed.com/v1/videos/$TASK_ID -H "Authorization: Bearer $API_NEED_API_KEY"Seedance 2.0 Fast API Endpoint
Create an asynchronous video task, then use its task ID to retrieve status and the completed video URL.
/v1/videos- Authorization
- Bearer $API_NEED_API_KEY
- Content-Type
- application/json
- HTTP-Referer
- optional - your site URL, for rankings
- Model
- seedance-2.0-fast
/v1/videos/{task_id}- Authorization
- Bearer $API_NEED_API_KEY
- Content-Type
- application/json
- HTTP-Referer
- optional - your site URL, for rankings
- Model
- seedance-2.0-fast
Parameters
These controls follow APINEED's current DTO and adapter behavior. Unsupported upstream-only fields are intentionally omitted.
| Name | Type | Values | Description |
|---|---|---|---|
model | string | Required | Use seedance-2.0-fast. |
prompt | string | Required | Describe the scene, motion, camera, and constraints for Seedance 2.0 Fast. |
seconds | string | 4-15 | Duration for the Seedance task. The page does not send top-level duration. |
images | string[] | Optional | Reference image URLs or data URLs for API integrations. |
metadata.resolution | string | 480p, 720p | Resolution sent in Seedance metadata. |
metadata.ratio | string | 16:9, 9:16, 1:1, 4:3, 3:4, 21:9 | Aspect ratio sent as ratio. |
metadata.content[].video_url | object | Optional | Required API structure for video-reference billing and routing. |
metadata.generate_audio | boolean | Optional | Controls native audio generation. |
metadata.watermark | boolean | Optional | Controls watermark forwarding. |
Seedance 2.0 Fast (Real Face) API questions
Practical answers for choosing, integrating, pricing, and operating the Seedance 2.0 Fast API on APINEED.
What is Seedance 2.0 Fast API?
It is ByteDance's accelerated Seedance 2.0 variant, exposed through APINEED for workflows where iteration speed matters. [2][3]
Does Fast guarantee a specific completion time?
No. ByteDance positions the variant for lower latency, but APINEED does not publish a fixed queue or generation-time SLA. [2][3]
How should Fast be compared with standard Seedance 2.0?
Run the same prompts and settings, then compare accepted output quality, motion coherence, total task time, retries, and final cost. Do not infer quality from the word Fast alone. [2][3]
Can Seedance 2.0 Fast handle real-person workflows?
Yes on the APINEED Fast route. Choose Save Fast when the workflow does not need real human faces. [3]
Which endpoint and duration field does Fast use?
Submit seedance-2.0-fast to POST /v1/videos and send duration through seconds, then poll GET /v1/videos/{task_id}. [3]
How is Fast priced?
APINEED applies the production Fast billing matrix for 480p and 720p, with separate rates depending on whether the request includes a video reference. [3]
How to deploy Seedance 2.0 Fast (Real Face)
Connect Seedance 2.0 Fast (Real Face) to your application through the APINEED media API.
Add credits
Add APINEED credits before submitting a billable generation.
Create an API key
Create and securely store an APINEED API key.
Configure the endpoint
Send seedance-2.0-fast requests to /v1/videos.
Track the task
Poll the returned task ID and store the completed video URL.
