Runbase

Command Palette

Search for a command to run...

ByteDance

Seedance 1.0 Lite

ID:bytedance/seedance-1-lite

ByteDance の Seedance 1.0 Lite 動画生成 API — テキストから動画・画像から動画に対応し、最大 1080p のクリップを低コストで生成。

テキストから動画画像から動画低コスト

概要

ByteDance の Seedance 1.0 Lite 動画生成 API — テキストから動画・画像から動画に対応し、最大 1080p のクリップを低コストで生成。

認証

すべての API リクエストには、Authorization ヘッダーで Bearer スキームを使用した有効な API キーが必要です。

クイックスタート

認証情報

環境変数 RUNBASE_API_KEY を設定してください。

Shell
export RUNBASE_API_KEY=your-api-key

実行を作成

Shell
curl -s https://runbase.net/api/v1/runs \
  -H "Authorization: Bearer $RUNBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bytedance/seedance-1-lite",
    "input": {
      "prompt": "A cinematic product photo of a ceramic lamp"
    }
  }'

実行

実行は非同期で処理されます。リクエストを送信し、結果をポーリングで取得してください。

実行を作成

Shell
curl -s https://runbase.net/api/v1/runs \
  -H "Authorization: Bearer $RUNBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bytedance/seedance-1-lite",
    "input": { "prompt": "A cinematic product photo of a ceramic lamp" }
  }'

実行ステータスを取得

Shell
curl -s https://runbase.net/api/v1/runs/RUN_ID \
  -H "Authorization: Bearer $RUNBASE_API_KEY"

結果を取得

status が "succeeded" になるまでステータスエンドポイントをポーリングし、レスポンスの output.urls を参照してください。

入力スキーマ

パラメータタイプ必須説明
promptstring必須Prompt
aspect_ratiostring任意Aspect ratioオプション: 16:99:164:33:41:121:9
resolutionstring任意Resolutionオプション: 480p720p1080p
durationstring任意Durationオプション: 510
image_urlsstring[]任意Source image

出力スキーマ

フィールドタイプ説明
urlsstring[]生成された出力 URL

エラー

API は標準の HTTP ステータスコードで成功または失敗を示します。

ステータスコード説明
400Ungültige Anfrage – fehlende oder fehlerhafte Parameter
401Authentifizierung fehlgeschlagen – fehlender oder ungültiger API-Schlüssel
402Unzureichendes Guthaben
403Zugriff verweigert – IP nicht erlaubt oder Ausgabenlimit des API-Schlüssels überschritten
404Ausführung nicht gefunden
429Rate-Limit überschritten
500Interner Serverfehler