Login
Back to Blog
РусскийGuide

Реальный биллинг Seedance 2.0: почему нет фиксированной цены за секунду

Разбираем, как Seedance 2.0 тарифицируется по фактическим output tokens после завершения задачи, на двух тестах 720p/4s.

C
Crazyrouter Team
June 18, 2026 / 1 views
Share:
Реальный биллинг Seedance 2.0: почему нет фиксированной цены за секунду

Реальный биллинг Seedance 2.0: сначала output tokens, затем расчет цены за секунду#

Клиенты часто спрашивают: сколько стоит Seedance 2.0 за секунду? Точный ответ: это не фиксированная цена за секунду. Итоговая стоимость считается по фактическим output tokens, которые возвращает провайдер после завершения задачи.

Seedance 2.0 billing guide

Главный вывод#

The correct billing flow is:

text
submit task -> task completes -> upstream returns usage tokens -> calculate USD by tokens -> convert to Crazyrouter quota

It is not:

text
submit task -> charge directly by requested duration seconds

So we should not say:

text
1 second = fixed N tokens

Instead, after the task finishes, we can calculate:

text
observed tokens/sec = billedTokens / requestedDurationSeconds
observed USD/sec = actualPriceUSD / requestedDurationSeconds

This is an observed value for that task, not a universal fixed rate.

Текущие публичные ограничения#

Current public capability boundary for doubao-seedance-2-0 and doubao-seedance-2-0-fast:

  • 480p supported
  • 720p supported
  • 1080p is not currently in the public supported range

The measured examples below use 720p and 4s.

Правила биллинга#

Seedance 2.0 billing mainly depends on whether the request contains video input.

ModelConditionBilling keyUnit price
doubao-seedance-2-0no video inputdoubao-seedance-2-0:video046 / 7 USD / 1M tokens
doubao-seedance-2-0with video inputdoubao-seedance-2-0:video128 / 7 USD / 1M tokens
doubao-seedance-2-0-fastno video inputdoubao-seedance-2-0-fast:video037 / 7 USD / 1M tokens
doubao-seedance-2-0-fastwith video inputdoubao-seedance-2-0-fast:video122 / 7 USD / 1M tokens

video0 means there is no video reference input. video1 means the request includes video reference input, such as reference_video.

Формула итоговой стоимости#

After a successful task, the system first reads TotalTokens. If unavailable, it falls back to CompletionTokens.

text
actualPriceUSD =
  unitPriceUSDPer1MTokens
  * (billedTokens / 1_000_000)
  * quantityMultiplier
  * groupRatio
  * discount

Without extra multipliers or discounts:

text
actualPriceUSD = unitPriceUSDPer1MTokens * billedTokens / 1_000_000

Crazyrouter quota conversion:

text
actualQuota = int(actualPriceUSD * QuotaPerUnit)
QuotaPerUnit = 500000

Seedance 2.0 billing calculator

Тест 1: text-to-video#

Request profile:

  • Model: doubao-seedance-2-0
  • Type: text-to-video
  • Input: text only, no image or video reference
  • Resolution: 720p
  • Duration: 4s
  • Task ID: cgt-20260617212928-5s755
  • completion_tokens = 87300
  • total_tokens = 87300

Because there is no video reference input, the billing key is:

text
billing_key = doubao-seedance-2-0:video0
unitPrice = 46 / 7 = 6.571428 USD / 1M tokens

Calculation:

text
tokensPerSecond = 87300 / 4 = 21825 tokens/s
actualPrice = 87300 / 1000000 * 6.571428 = 0.5736 USD
pricePerSecond = 0.5736 / 4 = 0.1434 USD/s

Result: this simple 4-second 720p text-to-video task was observed at about $0.14/sec.

Тест 2: generation по reference video#

Request profile:

  • Model: doubao-seedance-2-0
  • Type: reference-video generation
  • Input: text + previous generated video as reference_video
  • Resolution: 720p
  • Duration: 4s
  • Task ID: cgt-20260617214300-rsnsx
  • completion_tokens = 173700
  • total_tokens = 173700

Because the request contains video reference input, the billing key is:

text
billing_key = doubao-seedance-2-0:video1
unitPrice = 28 / 7 = 4.000000 USD / 1M tokens

Calculation:

text
tokensPerSecond = 173700 / 4 = 43425 tokens/s
actualPrice = 173700 / 1000000 * 4.000000 = 0.6948 USD
pricePerSecond = 0.6948 / 4 = 0.1737 USD/s

Result: this 4-second 720p reference-video task was observed at about $0.17/sec.

Сравнение двух тестов#

ScenarioDurationReturned tokensTokens/secUnit priceTotal priceObserved $/sec
Simple text-to-video, no video input4s87,30021,825$6.571428 / 1M tokens$0.5736$0.1434/s
Reference video generation, with video input4s173,70043,425$4.000000 / 1M tokens$0.6948$0.1737/s

This comparison shows why a single per-second price is misleading: video-input requests have a lower unit token price, but may return more tokens, so the final observed per-second cost can still be higher.

Seedance 2.0 billing workflow

Объяснение для клиента#

У Seedance 2.0 нет единой фиксированной цены за секунду. Биллинг идет по фактическим output tokens после завершения задачи. Можно посчитать наблюдаемую среднюю цену за секунду по готовым задачам, но универсального фиксированного tokens/sec нет.

If customers ask why there is no fixed second price, the reason is simple: duration is a task parameter, but the final billing unit is the actual output tokens returned after generation.

Внутренняя рекомендация#

To give customers more stable estimates, collect more real task samples and group them by:

  • text-to-video without reference input
  • image-to-video
  • reference-video generation
  • with or without audio
  • duration
  • prompt complexity
  • resolution

Then calculate p50, p75, and p90 tokens/sec. This is much more reliable than guessing a universal tokens/sec number.

Bottom line#

Самое безопасное объяснение клиенту: Seedance 2.0 оплачивается по фактическим output tokens. В текущих тестах 720p/4s простой text-to-video стоил около 0.14/s,аgenerationсreferencevideo—около0.14/s, а generation с reference video — около 0.17/s.

For one API layer across video, image, chat, and other AI models, try Crazyrouter.

Implementation Guides

Topics

Guide

Related Posts

Цены Seedance 2.0: как перевести 46 юаней за миллион токенов в стоимость за секундуGuide

Цены Seedance 2.0: как перевести 46 юаней за миллион токенов в стоимость за секунду

Seedance 2.0 тарифицируется по токенам. В статье переводим 46 CNY за миллион токенов в цену за секунду и стоимость роликов 5, 15, 30 и 60 секунд.

May 25
Реальная стоимость AI API в 2026 году: руководство по ценам для разработчиковGuide

Реальная стоимость AI API в 2026 году: руководство по ценам для разработчиков

Мы проанализировали цены у более чем 15 провайдеров AI API для самых популярных моделей. Вот полный разбор того, за что вы на самом деле платите — и как сократить расходы на 45%.

Feb 15
Стоит ли Suno Studio своих денег? (Обзор 2026 года от музыкального продюсера)

Стоит ли Suno Studio своих денег? (Обзор 2026 года от музыкального продюсера)

Опытный музыкальный продюсер оценивает Suno Studio в 2026 году: непредсказуемый результат, громоздкий интерфейс и стоимость в $30/месяц, но при этом мощный творческий контроль, преимущество первопроходца в сфере AI‑музыки и чистое удовольствие от процесса. Идеален для серьё

Jan 23
Лучшие генераторы музыки с ИИ 2026: сравнение Suno, Udio и Stable AudioTutorial

Лучшие генераторы музыки с ИИ 2026: сравнение Suno, Udio и Stable Audio

Выбор подходящего генератора музыки с ИИ может быть непростым. В этом руководстве сравниваются лучшие инструменты ИИ для музыки, доступные в 2026 году

Jan 23
Учебник по API Text-Embedding-3-Small - Руководство по модели эмбеддингов OpenAITutorial

Учебник по API Text-Embedding-3-Small - Руководство по модели эмбеддингов OpenAI

Полное руководство по использованию API OpenAI text-embedding-3-small для семантического поиска, RAG-систем и сопоставления по схожести. Включает примеры на Python, Node.js и сравнение стоимости.

Jan 26
Clawdbot менее чем за 2 минуты (БЕСПЛАТНЫЙ ХОСТИНГ 24/7)

Clawdbot менее чем за 2 минуты (БЕСПЛАТНЫЙ ХОСТИНГ 24/7)

Узнайте, как развернуть Clawdbot (Claude.bot) менее чем за две минуты с бесплатным круглосуточным (24/7) хостингом на AWS. В этом руководстве показаны настройка, интеграция с каналами (WhatsApp, Discord, Telegram), навыки вроде веб‑поиска через Exa и реальные сценарии использования, такие как по

Jan 26