🎁 New Sign up free, 10 calls on us. Up to $1, no card needed.

Dreamina Seedance 2.0 vs Dreamina Seedance 2.0 Mini

vs

Which one, when — curated verdict, not a benchmark table

The mini tier is half the price — $3.5 per million video tokens against $7 — and the newer of the two, 2026-06 against 2026-01, but it renders 480p/720p only where the base model reaches 4K with 10-bit output. Clip length (4–15 s), frame rate (24 fps), the six aspect ratios and native audio match on both. Pick mini for volume at 720p, the base model when you need the resolution.

Pricing

Dreamina Seedance 2.0 Dreamina Seedance 2.0 Mini Δ
Per 1M video tokens $7 $3.5

Rates from the live catalog at build time; each model page carries the current card.

Where they sit — price per 1M video tokens across all 5 video-generation models on this billing unit (log scale)

Capabilities

Specs

Dreamina Seedance 2.0 Dreamina Seedance 2.0 Mini
Input modalities text image text image
Output modalities video video
Released 2026-01 2026-06
Resolution 480p – 4K (10-bit at 4K) (range) 480p / 720p (fixed set)
Clip length 4–15 s (range) 4–15 s (range)
Frame rate 24 fps 24 fps
Aspect ratios 6 (incl. 16:9, 9:16, 1:1) 6 (incl. 16:9, 9:16, 1:1)
Input modes
  • text-to-video
  • first-frame & first/last-frame image-to-video
  • text-to-video
  • first/last-frame image-to-video
Format .mp4 .mp4

Specs are transcribed from each vendor’s documentation; a row a vendor does not publish is left out rather than inferred. Full sources: Dreamina Seedance 2.0 · Dreamina Seedance 2.0 Mini

One prompt, both models — measured through the gateway

PROMPT A paper boat drifts across a rain puddle at dusk. The camera pushes in slowly as a single drop lands beside it and rings spread outward across the reflection.

Dreamina Seedance 2.0

Model returned 1280×720 Length 5s latency 133 s

Dreamina Seedance 2.0 Mini

Model returned 1280×720 Length 5s

One prompt, one request per model, no retries and no cherry-picking — the first result each model returned. Neither size nor duration was pinned: each model used its own default, because a request shaped to fit all of them would flatter none. Files here are re-encoded for the web, so judge composition and prompt adherence, not compression.

Switch between them with one line

Both ids are in every tab below — the highlighted pair of lines is the only edit. Same endpoint, same key, same request shape.

import time

import requests

BASE = "https://synthorai.io/v1"
HEADERS = {"Authorization": "Bearer sk-syn-..."}

# 1) create the video generation job (POST /v1/videos)
task = requests.post(
    f"{BASE}/videos",
    headers=HEADERS,
    json={
        "model": "dreamina-seedance-2-0-260128",
        # "model": "dreamina-seedance-2-0-mini-260615",  # uncomment this line, comment the one above
        "prompt": "a watercolor lighthouse at dawn, waves rolling in, camera pulling back",
        "resolution": "720p",
        "duration": 5,
    },
).json()

# 2) poll the job until it reaches a terminal state
while task["status"] in ("queued", "in_progress"):
    time.sleep(5)
    task = requests.get(f"{BASE}/videos/{task['id']}", headers=HEADERS).json()

# 3) completed → signed video URL (valid ~24h — download and store it promptly)
if task["status"] == "completed":
    print(task["data"][0]["url"])
else:
    print(task["error"])

Get an API key →

FAQ

Which is cheaper, Dreamina Seedance 2.0 or Dreamina Seedance 2.0 Mini?

Dreamina Seedance 2.0 Mini is cheaper on per 1m video tokens ($3.5 vs $7, 2.0× apart). Other rows may point the other way — the table above carries the full card, and real cost depends on your mix.

Can I A/B test Dreamina Seedance 2.0 against Dreamina Seedance 2.0 Mini without two integrations?

Yes. Both are served through the same OpenAI-compatible endpoint with one API key — switching is a one-line model-string change, so you can route a fraction of traffic to each and compare bills directly.

What clip lengths and resolutions do they support?

The spec table above lists each model’s published resolutions and clip lengths, and marks whether a value is a fixed set of options or a continuous range — the two look alike and price differently, since per-second billing multiplies with length.

Related comparisons

From our measured studies