ByteDance logo

Seedance 2.0 Fast (Real Face) API

seedance-2.0-fast

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.

MODALITIES
PriceFrom $3.12 / 1M output tokensCONTEXTN/A

Playground

Generate with Seedance 2.0 Fast (Real Face), review the output, and use the same request shape in your application.

Fast route with real-face support

Choose this route for the Fast model variant. APINEED does not publish a fixed latency SLA for the Fast designation. Compare Save Fast

Workflow
From $3.12 / 1M output tokensSign in required. Final cost uses completed usage.
Output Ready
Sample output
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.

API Need5% off
Uptime
Total Context
N/A
Max Output
N/A
Input
Free/ 1M
Output
$3.12/ 1M
Cache Read
Route priced
Cache Write
Route priced

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]

Seedance 2.0 Fast videoUSD / 1M output tokens
ResolutionInput conditionOfficial priceAPINEED price
480pIncludes video input$3.28$3.125% off
Excludes video input$5.52$5.255% off
720pIncludes 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.

System statusLast 90 days
APINEED GATEWAY99.70% uptime

Seedance 2.0 Fast API capabilities

Fast is the accelerated Seedance 2.0 variant described by ByteDance for lower-latency generation. It is useful for drafts and repeated prompt tests, but APINEED does not promise a fixed completion-time SLA. [1][2][3]

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.

1

Create an API key

Store your APINEED key server-side as API_NEED_API_KEY.

export API_NEED_API_KEY=sk-apineed-v1-...
2

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
  }
}'
3

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.

POST/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
GET/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.

NameTypeValuesDescription
modelstringRequiredUse seedance-2.0-fast.
promptstringRequiredDescribe the scene, motion, camera, and constraints for Seedance 2.0 Fast.
secondsstring4-15Duration for the Seedance task. The page does not send top-level duration.
imagesstring[]OptionalReference image URLs or data URLs for API integrations.
metadata.resolutionstring480p, 720pResolution sent in Seedance metadata.
metadata.ratiostring16:9, 9:16, 1:1, 4:3, 3:4, 21:9Aspect ratio sent as ratio.
metadata.content[].video_urlobjectOptionalRequired API structure for video-reference billing and routing.
metadata.generate_audiobooleanOptionalControls native audio generation.
metadata.watermarkbooleanOptionalControls 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.

1

Add credits

Add APINEED credits before submitting a billable generation.

2

Create an API key

Create and securely store an APINEED API key.

3

Configure the endpoint

Send seedance-2.0-fast requests to /v1/videos.

4

Track the task

Poll the returned task ID and store the completed video URL.

More live models