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.