Seedance 2.0 Mini vs Fast vs Standard: Same Features, Different Quality
Seedance 2.0 Mini and Fast expose identical capabilities: same reference limits, same edit and extend support. Here's what actually separates the three tiers.

Most comparisons of Seedance 2.0 treat Mini, Fast and Standard as three different models. They aren't. ByteDance's own documentation puts it plainly: the three "support largely the same features, with the primary differences being the trade-off between generation quality and cost."
That framing matters, because it changes the question you should be asking. It isn't "which model can do what I need." All three can. It's "how much quality am I willing to trade for throughput."
We run all three on Veevid. This post covers what the capability tables actually say, the one place where the tiers genuinely diverge, and how to decide per shot instead of picking one and living with it.
The Only Capability That Differs
Line up the three official capability tables and almost every row is identical:
| Mini | Fast | Standard | |
|---|---|---|---|
| Text to video | Yes | Yes | Yes |
| First frame / first-last frame | Yes | Yes | Yes |
| Omni reference (image, video, audio) | Yes | Yes | Yes |
| Edit video | Yes | Yes | Yes |
| Extend video | Yes | Yes | Yes |
| Generate audio | Yes | Yes | Yes |
| Return last frame | Yes | Yes | Yes |
| Max reference assets | 15 | 15 | 15 |
| Duration | 4-15s | 4-15s | 4-15s |
| Aspect ratios | 6 options | 6 options | 6 options |
| Output format | mp4 | mp4 | mp4 |
| Resolution | 480p, 720p | 480p, 720p | 480p, 720p, 1080p, 4K |
One row. That's the entire functional difference: Standard is the only tier that outputs above 720p.
Everything else you might reach for, multimodal references, in-place editing, extending an existing clip, native audio, is available on the cheapest tier. If your delivery target is 720p or below, and for social formats it usually is, Mini gives you the same feature surface as Standard.
What This Means If You're Integrating
Because the capability surface is shared, the three tiers also share a request contract. Switching tiers is a model ID swap, not a code path:
| Tier | Model ID |
|---|---|
| Standard | dreamina-seedance-2-0-260128 |
| Fast | dreamina-seedance-2-0-fast-260128 |
| Mini | dreamina-seedance-2-0-mini-260615 |
The content array, the reference roles, the audio toggle, the duration and ratio fields all stay the same. In our own integration, tier selection is a single parameter that flows through to the model ID. Nothing else in the request builder branches on it.
Practically, that means you can treat tier as a per-shot decision rather than a per-project one. Draft on Mini, promote the shots that survive review to a higher tier, and reuse the exact same prompt and reference set. There's no rewriting involved.
The 4K Footnote Nobody Mentions
If you do go to Standard for 4K, there's a constraint buried in the rate limit table that's easy to miss.
Non-4K requests on any tier get generous limits: 180 requests per minute and 3 concurrent jobs for individual accounts. Switch to 4K on Standard and both collapse to 15 requests per minute and 1 concurrent job.
That's a twelvefold drop in throughput and a hard serialization of your queue. For a hero shot it's fine. For a batch it will dominate your wall clock far more than the per-clip generation time does.
There's a second cost to 4K that shows up downstream: it's encoded as 10-bit H.265. Plenty of browsers and players won't play that inline, so anything you hand to a reviewer or embed on a page may need a transcode step first. 1080p on Standard is 8-bit and doesn't have this problem.
How We'd Actually Choose
Skip the tier-by-tier scoring. In practice the decision collapses to three questions.
Do you need above 720p? If yes, Standard is your only option and the choice is over. If no, all three tiers are on the table and you're purely trading quality against volume.
Is this shot going to be iterated on? Early exploration burns a lot of generations that nobody will ever see. Official guidance points at Mini for cost performance, and that's exactly where drafting belongs. Spend the savings on more attempts rather than on making each attempt prettier.
Does the shot carry the piece? Dramatic lighting, shallow depth of field, complex camera moves, these are where the quality gap is visible. Standard earns its place on the shots a viewer will actually linger on, and rarely anywhere else.
The failure mode we see most often is picking one tier for an entire project. A 30 shot sequence almost never needs uniform fidelity. Two or three shots carry it, the rest are connective tissue.
A Detail Worth Knowing About Resolution
Resolution isn't validated as an error when you get it wrong. Ask Mini or Fast for 1080p or 4K and the request doesn't fail, it silently falls back to 720p.
This is convenient right up until you're comparing output and wondering why your "1080p Mini" test looks identical to your 720p one. It's the same file. If you're benchmarking tiers against each other, pin the resolution explicitly and confirm what came back rather than trusting what you asked for.
We normalize this on our side so the credit estimate always matches the resolution that will actually be generated, but if you're calling the API directly, it's on you to check.
Where the 2.0 Series Sits Now
Seedance 2.5 raised the ceiling considerably: reference slots went from 15 to 50, takes doubled to 30 seconds, and 1080p arrived with a mov output option. We covered that in Seedance 2.5 vs Seedance 2.0.
None of that makes the 2.0 tiers obsolete. Most social deliverables don't run 30 seconds in a single take, and the 2.0 series remains the more economical path for volume work at 720p and below. The tier split exists precisely so you can spend more where it shows and less where it doesn't.
If you're new to what the omni reference system can do, the multimodal editing guide walks through combining image, video and audio references in one request. Everything in it applies to all three tiers.
Try the Tiers Side by Side
The fastest way to calibrate is to run the same prompt across tiers and look at them next to each other. Same prompt, same references, same duration, three outputs.
Open Seedance 2.0 in the video generator and switch tiers from the Model Version selector. The credit cost updates as you switch, so you can see the trade before you commit to it.
For most people the useful discovery isn't that Standard looks better. It's how many of your shots don't need it to.