Back to modelsBuy Plan
ByteDance
Doubao Seedance 2.0 Fast
字节跳动 Seedance 2.0 极速版。音视图文参考,更快,继承 2.0 核心优势。最高 720p,4-15 秒输出,适合大批量出片与快速试样。
Quick Stats
Context
8K
Max Output
4K
Provider
ByteDance
Specs
1
Modalities
in textin imagein audioin videoout videoout audio
Specs & Platform Price (per 1M tokens)
Quality
Input $0Output $0
Video price · by resolution × video input
480P/720P · no video $4.35480P/720P · w/ video $2.59
Recommended Plan
Doubao Seedance 2.0 Fast Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
volcengine/doubao-seedance-2-0-fast-260128cURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "volcengine/doubao-seedance-2-0-fast-260128",
"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-0-fast-260128",
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.