Back to modelsBuy Plan
ByteDance
Doubao Seedance 2.5
Doubao Seedance 2.5 是字节跳动推出的新一代视频生成模型,支持文本、图片、音频和视频等多模态参考输入,在长叙事、全模态参考和视频编辑能力上进一步提升,适用于高质量视频生成、多模态参考创作与视频编辑等场景。
Quick Stats
Context
8K
Max Output
4K
Provider
ByteDance
Specs
1
Modalities
in textin imagein audioin videoout video
Specs & Platform Price (per 1M tokens)
Quality
Input $0Output $0
Video price · by resolution × video input
480p · no video $9.26480p · w/ video $5.5588720p · no video $9.26720p · w/ video $5.55881080p · no video $10.191080p · w/ video $6.088
Recommended Plan
Doubao Seedance 2.5 Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
volcengine/doubao-seedance-2-5-v2cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "volcengine/doubao-seedance-2-5-v2",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python (openai SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="volcengine/doubao-seedance-2-5-v2",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.