Seedance 1.5 Pro
ID:
bytedance/seedance-1.5-proByteDance の Seedance 1.5 Pro 動画生成 API — 同期音声・多言語対話・最大 1080p に対応したシネマ品質の動画生成。
テキストから動画画像から動画音声生成多言語1080p
概要
ByteDance の Seedance 1.5 Pro 動画生成 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.5-pro",
"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.5-pro",
"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 を参照してください。
入力スキーマ
| パラメータ | タイプ | 必須 | 説明 |
|---|---|---|---|
| prompt | string | 必須 | Prompt |
| aspect_ratio | string | 任意 | Aspect ratioオプション: 16:99:164:33:41:121:9 |
| resolution | string | 任意 | Resolutionオプション: 480p720p1080p |
| duration | string | 任意 | Durationオプション: 4812 |
| generate_audio | boolean | 任意 | Generate audio |
| image_urls | string[] | 任意 | Source images |
出力スキーマ
| フィールド | タイプ | 説明 |
|---|---|---|
| urls | string[] | 生成された出力 URL |
エラー
API は標準の HTTP ステータスコードで成功または失敗を示します。
| ステータスコード | 説明 |
|---|---|
| 400 | Ungültige Anfrage – fehlende oder fehlerhafte Parameter |
| 401 | Authentifizierung fehlgeschlagen – fehlender oder ungültiger API-Schlüssel |
| 402 | Unzureichendes Guthaben |
| 403 | Zugriff verweigert – IP nicht erlaubt oder Ausgabenlimit des API-Schlüssels überschritten |
| 404 | Ausführung nicht gefunden |
| 429 | Rate-Limit überschritten |
| 500 | Interner Serverfehler |

