Seedance 2.5 API
Seedance 2.5
Seedance 2.5 API Is Coming
The next-generation video model is coming.
Up to 30-second clips and 50 multimodal references — final specs to be confirmed at official launch. Join the waitlist for launch updates.
Launch updates · workflow prep · no spam.
See what Seedance 2.5 can do
Example clips illustrating target use cases — brand films, product ads, motion graphics and more.
Seedance 2.5 vs Seedance 2.0
How the next generation upgrades today’s model — capability by capability.
| Capability | Seedance 2.5Coming Soon | Seedance 2.0Available now |
|---|---|---|
| Clip length | Up to 30s native single-shot output | 15s ceiling |
| Reference assets | Up to 50 full-modal assets (characters / scenes / footage / storyboards) | Up to 12 reference files |
| Local editing | Controllable local edits with no full re-generation (swap background, change wardrobe) | Basic extension & clip editing only |
| Editing precision | Product page shows improved consistency on extension | Repeated frames / blur on extension |
| Multilingual | Multilingual creation shown; API voice behavior unconfirmed | Mainly Chinese & English |
| Industry use | Ads, e-commerce, social, short films | Content creation, ads & marketing |
| Stability | Positioned for improved stability (not independently benchmarked) | Occasional breakdown / consistency issues in complex scenes |
| Physics simulation | Vendor claims stronger physical realism (not independently benchmarked) | Basic physics |
Capabilities reflect the official Dreamina product page; performance, stability, physics and voice differences are the vendor’s positioning and are not independently benchmarked by EvoLink. Final API specs are confirmed at launch.
Read the full comparison →Seedance 2.5: Confirmed vs Reported
Last verified: 2026-07-13
| Fact | Status |
|---|---|
| Introduced at the Volcano Engine FORCE conference | Reported — third-party coverage (June 23, 2026) |
| Up to 30-second single-shot clips | Official product claim (Dreamina) — API support to be confirmed |
| Up to 50 multimodal reference inputs | Official product claim (Dreamina) — API support to be confirmed |
| Resolution tiers (including 4K) | Official product claim (Dreamina) — public-API tiers to be confirmed |
| Model ID, pricing, rate limits, regions | Unknown — awaiting official API docs |
| EvoLink route availability | Opens after official docs are public and live validation passes |
Seedance 2.5 API Access Status on EvoLink
When can I use the Seedance 2.5 API on EvoLink?
ByteDance introduced Seedance 2.5 at the Volcano Engine FORCE conference (reported June 23, 2026). The public API date has not been officially confirmed. This page is updated as availability changes; EvoLink will publish access once the official API documentation is public and the EvoLink route passes live validation.
Can I call Seedance 2.5 through EvoLink today?
Not yet through a public API. ByteDance typically ships new Seedance models to its own creative apps first, then opens API access via Volcano Engine and BytePlus. Until then, Seedance 2.0 is the current production model on EvoLink — and most 2.0 workflows should transfer to 2.5 with minimal changes (final parameters to be confirmed at launch).
Seedance 2.5 API Pricing: What to Expect
Official Volcengine API pricing for Seedance 2.5
As of July 2026, ByteDance has not published official per-second API pricing for Seedance 2.5 on Volcano Engine or BytePlus. The moment official rates are announced, this section lists them alongside the EvoLink route price — check back at launch.
How EvoLink pricing works for Seedance models
EvoLink is pay-per-use with no subscription: you top up credits and each generation is billed per second of output video. Seedance 2.0 currently starts from about $0.07/s for Fast 480p video. See the full Seedance 2.0 pricing table →
Estimating the cost of a 30-second Seedance 2.5 video
Video API cost scales primarily with duration and resolution. Until official Seedance 2.5 rates land, a practical budgeting baseline is today’s Seedance 2.0 pricing: a 30-second clip costs roughly twice a 15-second clip at the same tier. Native 30-second generation also replaces multi-segment stitching, which cuts retries and total spend.
How to Use the Seedance 2.5 API
EvoLink exposes every Seedance model behind one asynchronous API: submit a generation task, then poll the task until it completes. The pattern below runs on Seedance 2.0 today — when Seedance 2.5 opens, you should be able to switch the model ID with minimal other changes (final parameters confirmed at launch).
Python example: create and poll a video task
import requests, time
API_KEY = "YOUR_EVOLINK_API_KEY"
BASE_URL = "https://api.evolink.ai"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# Works with Seedance 2.0 today — switch the model ID when Seedance 2.5 opens.
task = requests.post(
f"{BASE_URL}/v1/videos/generations",
headers=HEADERS,
json={
"model": "seedance-2.0-text-to-video",
"prompt": "A 30-second brand story: sunrise over a coastal city, "
"drone push-in, upbeat soundtrack",
"duration": 15,
"quality": "720p",
"aspect_ratio": "16:9",
"generate_audio": True,
},
).json()
while True:
status = requests.get(
f"{BASE_URL}/v1/tasks/{task['id']}", headers=HEADERS
).json()
if status["status"] in ("completed", "failed"):
break
time.sleep(5)
print(status)cURL example: submit a generation and check status
# 1) Submit the generation task (Seedance 2.0 pattern, Seedance 2.5-ready)
curl -X POST https://api.evolink.ai/v1/videos/generations \
-H "Authorization: Bearer $EVOLINK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0-text-to-video",
"prompt": "A 30-second product story with synced audio",
"duration": 15,
"quality": "720p",
"aspect_ratio": "16:9",
"generate_audio": true
}'
# 2) Poll the task until "status" is "completed"
curl https://api.evolink.ai/v1/tasks/TASK_ID \
-H "Authorization: Bearer $EVOLINK_API_KEY"Preparing reference assets for Seedance2.5
The official Dreamina product page showcases Seedance 2.5 with up to 50 multimodal reference inputs across images, video, and audio (API-level limits pending confirmation) — beyond Seedance 2.0’s limits. Start organizing character sheets, product shots, motion clips, and audio cues now, and validate them on Seedance 2.0’s reference-to-video route today so your asset pipeline is ready early.
Seedance 2.5 endpoints, parameters, and model IDs will be confirmed at official launch. Code samples use the live Seedance 2.0 API on EvoLink as the preparation pattern.
Seedance 2.5 Free Access and Trial Credits
Try Seedance 2.5 free with EvoLink credits at launch
New EvoLink accounts receive trial credits that work across every model on the platform — including Seedance 2.5 when it launches. Sign up now, test your workflow on Seedance 2.0, and the same API key and credits will work with 2.5 once it launches on EvoLink. Sign up free and get credits →
Available now
Seedance 2.0 is live today.
Don't want to wait? The current generation is already on EvoLink — start building today while 2.5 is in the pipeline.
Seedance 2.0 from $0.045/s · See full pricing & API docs →
Seedance 2.5 next steps
Use these pages to track API status, prepare prompts, and compare the live Seedance routes on EvoLink.
Seedance 2.5 API — FAQ
When does Seedance 2.5 launch?
The public launch date has not been officially confirmed. Join the waitlist and we will notify you the moment it goes live on EvoLink.
What is Seedance 2.5?
The next-generation multimodal video model. The official Dreamina product page showcases up to 30-second clips in a single generation and 50 multimodal reference assets. API-level specs — including resolution tiers (4K) and native audio — remain unconfirmed until official API documentation.
How is 2.5 different from 2.0?
2.0 tops out around 15-second clips, 12 reference files and 1080p–2K. The official product page positions 2.5 at roughly double the duration with references expanded to 50; 4K is shown for the product, but public-API resolution tiers are not yet confirmed.
What does the waitlist get me?
Launch updates, workflow preparation notes and a heads-up when EvoLink publishes the main Seedance 2.5 product details. No spam — just the launch ping.
Will my Seedance 2.0 workflow still help?
Yes. Teams can start with the current Seedance 2.0 workflow on EvoLink, then evaluate Seedance 2.5 when the main product page is ready.
Is the waitlist free?
Completely free. We only use your email to notify you about the Seedance 2.5 launch and early access.
How much will the Seedance 2.5 API cost?
ByteDance has not published official per-second pricing for Seedance 2.5 yet. On EvoLink, Seedance models are pay-per-use, billed per second of output video — Seedance 2.0 starts from about $0.07/s — and Seedance 2.5 rates will be listed here the day official pricing is announced.
Can I try Seedance 2.5 for free?
Yes. New EvoLink accounts receive trial credits that work on every model on the platform, including Seedance 2.5 at launch. You can sign up now and validate your workflow on Seedance 2.0 with the same API key.
How do I get Seedance 2.5 API access early?
Create an EvoLink account and API key now. EvoLink will enable the Seedance 2.5 route after the official API documentation is public and the route passes live validation; most Seedance 2.0 workflows should carry over with minimal changes. Join the waitlist to get the launch notification.
What resolutions will Seedance 2.5 support?
4K output is showcased on the official Dreamina product page, but the resolution tiers exposed through the public API are not yet confirmed. This page updates as soon as final API specs are published.



