Seedance 2.0 Mini API

这是Seedance 2.0中最快、最实惠的版本,支持原生音频、摄像控制以及480p和720p的图像或视频输入,支持短片电影。

ByteDance视频生成发布日期 Jun 15, 2026Malaysia专有端点

About Seedance 2.0 Mini

这是Seedance 2.0中最快、最实惠的版本,支持原生音频、摄像控制以及480p和720p的图像或视频输入,支持短片电影。

也称为 Seedance Mini, ByteDance Seedance 2.0 Mini, Seedance-2.0-Mini, seedance-2-0-mini

audio synccamera controlimage to videovideo editing

Seedance 2.0 Mini specs

模型 ID
seedance-2-0-mini
提供方
ByteDance
类别
视频生成
Released
Jun 15, 2026
输入
TextImageVideoAudio
输出
Video
区域
Malaysia
端点
POST /v1/videos/generations

Seedance 2.0 Mini API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

类型
规格
价格
T2V/I2V 480P (英语).
每秒钟
$0.070
- T2V/I2V 720P (英语).
每秒钟
$0.150
视频输入 480P
每秒钟
$0.167
视频输入 720P
每秒钟
$0.359
在完整价格页比较

How to call the Seedance 2.0 Mini API

Seedance 2.0 Mini runs through POST /v1/videos/generations. The request returns a job_id right away; poll GET /v1/jobs/{job_id} until the job completes and read the output URLs from the result. Get an API key from the EmpirioLabs dashboard.

cURL: submit the job
curl https://api.empiriolabs.ai/v1/videos/generations \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2-0-mini",
    "prompt": "Describe what you want Seedance 2.0 Mini to generate."
  }'
cURL: poll for the result
curl https://api.empiriolabs.ai/v1/jobs/JOB_ID \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY"
Python
import requests

response = requests.post(
    "https://api.empiriolabs.ai/v1/videos/generations",
    headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    json={
        "model": "seedance-2-0-mini",
        "prompt": "Describe what you want Seedance 2.0 Mini to generate.",
    },
)
job = response.json()

# Generation runs as an async job. Poll until it completes.
import time
while True:
    status = requests.get(
        f"https://api.empiriolabs.ai/v1/jobs/{job['job_id']}",
        headers={"Authorization": "Bearer YOUR_EMPIRIOLABS_API_KEY"},
    ).json()
    if status.get("status") in ("completed", "failed"):
        print(status)
        break
    time.sleep(5)
Full Seedance 2.0 Mini API reference

Seedance 2.0 Mini API parameters

Request parameters supported by the Seedance 2.0 Mini API on EmpirioLabs. Defaults apply when a field is omitted.

参数类型默认范围 / 值描述
promptstring--Scene description.
modeenumautoauto, t2v, i2v_first, i2v_both, reference, edit, extendauto: detect from inputs. t2v: text-to-video. i2v_first: animate first frame. i2v_both: morph between start (image) and end (image_end). reference: use image as...
resolutionenum720p480p, 720pVideo generation resolution. Options are model-specific and sourced from the catalog.
aspect_ratioenumadaptiveadaptive, 16:9, 9:16, 1:1, 4:3, 3:4, 21:9Output aspect ratio (1:1, 16:9, 9:16, 4:3, 3:2, etc.).
custom_durationbooleantrue-If false, the model decides clip length.
durationnumber54 to 15Clip length in seconds. Only used when custom_duration=true.
generate_audiobooleantrue-Generate native audio with the video.
imagestring--Reference / first-frame image URL.
image_endstring--End-frame image URL for i2v_both / extend.
videostring--Reference video URL for edit / extend / reference.
negative_promptstring--What to avoid.

须知

Seedance 2.0系列中轻量级、成本最低的方案:最快且最实惠的选择,非常适合选秀和高量短格式。仅限480p和720p(不包括1080p或4K)。提示 - 在追求多输入的逼真面部凝聚度时,先搭配Seedream 5.0 Lite来获取参考图像。上传的媒体预处理 - 视频输入被限制在15秒,用于参考、编辑和扩展工作流程。- 上传的视频输入在需要时会归一化为与提供商兼容的MP4格式。

Seedance 2.0 Mini API: common questions

How much does the Seedance 2.0 Mini API cost?

On EmpirioLabs, Seedance 2.0 Mini is billed pay as you go: T2V/I2V 480P (英语). $0.070 每秒钟; - T2V/I2V 720P (英语). $0.150 每秒钟; 视频输入 480P $0.167 每秒钟. The live rate card on this page always matches what the API charges.

Which endpoint does Seedance 2.0 Mini use?

Seedance 2.0 Mini is served through POST /v1/videos/generations on api.empiriolabs.ai with standard bearer-token authentication.

Can I try Seedance 2.0 Mini in the browser before integrating?

Yes. The EmpirioLabs playground runs Seedance 2.0 Mini in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Seedance 2.0 Mini API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.