🎁 新規 無料登録、10回の呼び出しを進呈。最大 $1、カード不要。

Dreamina Seedance 2.0 Fast 2026-01 リリース

ByteDance video
動画出力$5.6/M

ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。

30 秒で Dreamina Seedance 2.0 Fast を使う

非同期ジョブ API:タスクを作成してポーリングするか、Prefer: wait でリクエストを保持して完了を待ちます。POST /v1/videos

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-fast-260128",
        "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"])

Dreamina Seedance 2.0 Fast について

フラッグシップと同じ能力セット
480p/720p 出力とオプション音声
コストと生成速度のバランス

Dreamina Seedance 2.0 Fast は BytePlus ModelArk 上の ByteDance Seedance 2.0 シリーズのスピード&コスト帯です。

  • 公式チュートリアルは、最上位の品質が不要でコストと生成速度のバランスを最重視する場合に推奨しています。
  • フラッグシップと同じ能力セット — テキストから動画、先頭フレームおよび先頭+末尾フレームの画像から動画、generate_audio によるオプションの同期音声、シリーズ共通のマルチモーダル参照・動画編集・動画延長 — を共有しつつ、出力は 480p または 720p、24 fps、4〜15 秒、6 種類のアスペクト比に抑えられています。
  • このプロファイルは、広告バリエーション、SNS クリップ、解像度より回転の速さが効く反復ループに適しています。
  • Synthorai では、動画カタログの他のモデルと同じ非同期 /v1/videos ジョブ API の背後で動き、作成してポーリング、または Prefer: wait のセマンティクスで使えます。

スペックと制限

モダリティtext + image → video
機能vision
特記事項Speed/cost tier of the Dreamina Seedance 2.0 series, officially recommended for a balance of cost and generation speed when top-tier quality is not required; same capability set as the flagship (t2v, first/last-frame i2v, generate_audio, multimodal reference, video editing/extension) with output capped at 480p/720p; 24 fps, 4-15 s, six aspect ratios, .mp4; version date 260128 encoded in the model id.

出典:ByteDance 公式ドキュメント ↗

よくある質問

Dreamina Seedance 2.0 Fast API は無料で試せますか?

はい。新規アカウントには 10 回のトライアル呼び出しと最大 $1 の無料クレジットが付与され、カード登録は不要です。支払い方法を追加する前に、実際のワークロードで Dreamina Seedance 2.0 Fast を試すには十分な量です。

Dreamina Seedance 2.0 Fast は何が得意ですか?

フラッグシップと同じ能力セット、さらに480p/720p 出力とオプション音声とコストと生成速度のバランス。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。

Dreamina Seedance 2.0 Fast の料金はいくらですか?

Synthorai 上の Dreamina Seedance 2.0 Fast は動画トークン 100 万あたり $5.6 です(動画トークン ≈ 幅 × 高さ × 24fps × 秒数 ÷ 1024)。課金は生成に成功した場合のみ:従量課金でプラットフォーム手数料なし、サブスクリプションも不要です。

Dreamina Seedance 2.0 Fast API で動画を生成するには?

Synthorai の /v1/videos に model="dreamina-seedance-2-0-fast-260128" を指定して POST し、非同期ジョブを作成します。その後タスクをポーリングするか、Prefer: wait ヘッダーでリクエストを保持したまま完了を待つと、動画 URL が得られます。ベンダー SDK は不要です。

Dreamina Seedance 2.0 Fast を利用するには?

お使いの OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="dreamina-seedance-2-0-fast-260128" を設定すれば完了です。API キー 1 本でゲートウェイ上のすべてのモデルを利用できます。

関連モデル

無料の API キーを取得 コストを比較する →