All models

Seedance 2.0 Mini

bytedance/seedance-2.0-mini
ByteDance Video GenerationImage-to-VideoAudio GenerationFastMultimodal

ByteDance's compact, cost-efficient video generation model from the Seedance 2.0 family. Supports text-to-video, image-to-video, reference video, and reference audio for background music. Ideal for high-volume workloads where speed and cost matter.

Quick start

# Inspect the price — a plain request returns the 402 challenge:
curl -i https://api.glianalabs.com/v1/infer \
  -H "content-type: application/json" \
  -d '{
    "model": "bytedance/seedance-2.0-mini",
    "prompt": "<your prompt>"
  }'

# Pay + run in one step with the mppx CLI (create a wallet: npx mppx account create):
npx mppx https://api.glianalabs.com/v1/infer \
  -J '{"model": "bytedance/seedance-2.0-mini", "prompt": "<your prompt>"}'

Examples

Parameters

Input
prompt string required

Text prompt describing the video to generate

aspect_ratio string optional default: "16:9"

Video aspect ratio. Ignored if an image is used.

camera_fixed boolean optional default: false

Whether to fix camera position

duration integer optional default: 5

Video duration in seconds

fps number optional default: 24

Frame rate (frames per second)

generate_audio boolean optional

Whether to generate audio with the video

image string optional

Reference image (HTTP(S) URL or base64 data URI) for image-to-video

last_frame_image string optional

Reference image (HTTP(S) URL or base64 data URI) for last-frame guidance. Only works if an image start frame is also given.

reference_audio string optional

Reference audio (HTTP(S) URL or base64 data:audio/... URI) to use as background music. Must be accompanied by a reference image or video.

reference_images array optional

Reference images (1-4, HTTP(S) URLs or base64 data URIs) to guide video generation for characters, avatars, clothing, or environments. Cannot be used with 1080p resolution or first/last frame images.

reference_video string optional

Reference video (HTTP(S) URL or base64 data URI) for style/motion guidance

resolution string optional default: "720p"

Video resolution

seed integer optional

Random seed for reproducible generation

watermark boolean optional default: false

Whether to add a watermark to the output video

Output
video: string