ByteDance

Seedance 1.0

ByteDance's video generation family, in Pro and Lite variants, covering text-to-video and image-to-video at 480p and 720p. Available as a hosted endpoint; weights are not publicly released.

Capabilities

Characteristics reported by ByteDance in the Seedance 1.0 model introduction. Treat them as vendor claims, not independent measurements.

Multi-shot coherence

Subject appearance and scene layout are held stable across shot changes within a single generation, rather than each cut resampling the subject.

Motion and physics

The Pro variant is tuned for plausible trajectory and contact behaviour — the difference most visible in sports, vehicles and cloth.

Prompt adherence

Handles compound prompts that specify subject, action, camera move and style together, instead of collapsing to the dominant noun.

Style range

Covers photographic output through to stylised and animated looks from the same checkpoint.

Reported evaluations

ByteDance publishes results on its internal SeedVideoBench-1.0 suite and points to the public Artificial Analysis arena. Both charts below are ByteDance's own; we have not reproduced the numbers, and the arena leaderboard changes over time, so check the live ranking before quoting it.

SeedVideoBench-1.0 multi-dimensional evaluation
SeedVideoBench-1.0. ByteDance's internal evaluation across instruction following, motion and visual aesthetics.
Artificial Analysis arena results
Artificial Analysis. Blind pairwise preference scores from the public arena, as reported at release.

Variants

Pro targets output quality; Lite trades some fidelity for a lower cost per run. Per-run pricing is listed on each model page — it changes, so we don't mirror it here.

EndpointVariantTaskResolution
bytedance/seedance-v1-pro-t2v-480pProText-to-video480p
bytedance/seedance-v1-pro-i2v-480pProImage-to-video480p
bytedance/seedance-v1-pro-i2v-720pProImage-to-video720p
bytedance/seedance-v1-lite-t2v-480pLiteText-to-video480p
bytedance/seedance-v1-lite-i2v-480pLiteImage-to-video480p
bytedance/seedance-v1-lite-i2v-720pLiteImage-to-video720p

Run it

Swap the endpoint path for any variant in the table above; the request body is otherwise the same.

# 1. submit the job
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-v1-pro-i2v-480p" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
        "image": "https://example.com/still.jpg",
        "prompt": "The camera pushes in slowly as steam rises from the cup",
        "duration": 5,
        "enable_sync_mode": false
    }'

# -> {"code": 200, "data": {"id": "<request-id>", "status": "created", ...}}

# 2. poll until status is "completed"
curl "https://api.wavespeed.ai/api/v3/predictions/<request-id>/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# -> {"code": 200, "data": {"status": "completed", "outputs": ["https://..."]}}

Requests are asynchronous: POST returns a request id, then you poll /predictions/<id>/result until status is completed. Set enable_sync_mode: true to have the call block and return outputs directly.

API keys are created in the WaveSpeed dashboard.

Limitations

Worth knowing before you build on it: output is synthetic and unsuitable as a source of factual imagery; results inherit biases present in the training data; image-to-video quality tracks input image quality closely, and small changes to a prompt or seed can move the result noticeably. Each endpoint is fixed to the resolution listed above.

Resources