All models

Seedance 2.0 Fast

video

Fast ByteDance video model: cheaper and quicker than Seedance 2.0 — for drafts and iteration.

Pricing

0.18 $
Second

Price uses the live FX rate — shown equals charged.

Parameters

promptrequired
seconds5 · 10 · 15
size1080x1080 · 1080x1920 · 1280x720 · 1920x1080 · 480x480 · 480x852 · 720x1280 · 720x720 · 852x480
input_references2–9 images

How to use via API

import time
from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
video = client.videos.create(
model="seedance-2.0-fast",
prompt="Кот-космонавт на мотоцикле, ночь",
seconds="5",
size="1080x1080",
# input_references=[...] # 2–9 референс-картинок
)
while video.status not in ("completed", "failed"):
time.sleep(5)
video = client.videos.retrieve(video.id)
client.videos.download_content(video.id).write_to_file("video.mp4")