> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aireiter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Seedance 2.0 ビデオ生成

> - 非同期処理モードでタスクIDを返し、後続のクエリに使用可能
- テキストからビデオ、画像からビデオ（最初のフレーム／最後のフレーム／複数の参照画像）をサポート
- 横画面、縦画面の複数比率をサポート
- 音声生成をサポート


export const apiKeyUrl = 'https://aireiter.com/keys';

<Note>
  このAPIは2つのモデルバリアントをサポートしており、パラメータは完全に同じです：

  * `seedance2` — 標準版
  * `seedance2_face` — 実写版のアップロードをサポートし、機能は標準版と同じです
</Note>

## Authorizations

<ParamField header="Authorization" type="string" required>
  すべてのエンドポイントでBearer Tokenによる認証が必要です

  APIキーの取得方法：

  <a href={apiKeyUrl} target="_blank">APIキー管理ページ</a>にアクセスしてAPIキーを取得してください

  使用時はリクエストヘッダーに以下を追加します：

  ```
  Authorization: Bearer YOUR_API_KEY
  ```
</ParamField>

## Body

<ParamField body="model" type="string" required>
  モデル名

  以下のモデルバリアントをサポートしています（パラメータは完全に同じで、必要に応じて選択してください）：

  * `seedance2` — 標準版
  * `seedance2_face` — 実写アップロード対応版、機能は標準版と同一
</ParamField>

<ParamField body="params" type="object" required>
  モデルパラメータオブジェクト

  <Expandable title="params オブジェクトのプロパティ">
    <ParamField body="prompt" type="string" required>
      動画生成のテキスト説明、必須
    </ParamField>

    <ParamField body="type" type="string" required>
      参照モード、画像／動画パラメータの使用方法を決定します

      * `all_reference` — インテリジェント参照モード：`image_url` はキャラクター/スタイル参照画像（最大 9 枚）、`video_url` は参照動画（最大 3 つ）として使用
      * `first_last_frame` — 最初と最後のフレームモード：`image_url` は最初のフレーム（1 枚のみ）、`end_image_url` が最後のフレーム、`video_url` はサポートしません

      必須、選択可能な値：`all_reference`、`first_last_frame`
    </ParamField>

    <ParamField body="image_url" type="string[]">
      参照画像の URL

      * `all_reference` モード：最大 9 枚、1枚あたり最大 50MB、最小辺長 300px
      * `first_last_frame` モード：1 枚のみ（最初のフレーム）、最大 10MB、最小辺長 300px
    </ParamField>

    <ParamField body="video_url" type="string[]">
      参照動画の URL

      `all_reference` モードのみサポート。最大 3 つまで；対応フォーマットは `mp4`、`mov`；単一動画の長さは 2〜15 秒、すべての参照動画の合計長は 15 秒以内；単一動画サイズは 50MB 以下；フレームレート 24〜60 FPS；解像度は `480p`、`720p` をサポート；アスペクト比 0.4〜2.5；幅・高さの範囲は 300〜6000px；総ピクセル数は 409600〜927408 の範囲

      <Warning>`all_reference` モードのみ有効、`type` が `first_last_frame` の場合はこのパラメータを送信しないでください</Warning>
    </ParamField>

    <ParamField body="end_image_url" type="string">
      最終フレーム画像の URL

      最大 10MB

      <Note>`first_last_frame` モードのみ有効</Note>
    </ParamField>

    <ParamField body="aspect_ratio" type="string" default="16:9">
      動画のアスペクト比

      サポートされているアスペクト比：

      * `16:9` - 横向き（デフォルト）
      * `9:16` - 縦向き
      * `1:1` - 正方形
      * `4:3` - 標準
      * `3:4` - 縦向き標準
      * `21:9` - ウルトラワイド
    </ParamField>

    <ParamField body="resolution" type="string" default="720p">
      動画の解像度

      サポートされている解像度：

      * `480p`
      * `720p`（デフォルト）
      * `1080p`
    </ParamField>

    <ParamField body="video_length" type="string" default="5">
      動画の長さ（秒）

      対応時間範囲：4〜15 秒、デフォルトは 5 秒
    </ParamField>

    <ParamField body="generate_audio" type="boolean" default="true">
      音声を生成するかどうか、デフォルトは `true`
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="out_task_id" type="string" required>
  発信者タスクID

  ユーザー定義のタスク識別子、必須
</ParamField>

## Response

<ResponseField name="out_task_id" type="string">
  発注者タスクID、結果の問い合わせに使用可能
</ResponseField>

<ResponseField name="status" type="string">
  初期状態、固定で `"pending"`
</ResponseField>

<ResponseField name="estimated_credits" type="number">
  推定消費クレジット
</ResponseField>

<ResponseField name="created_at" type="string">
  作成日時（ISOフォーマット）
</ResponseField>

<RequestExample>
  ```bash cURL（all_reference モード） theme={null}
  curl --request POST \
    --url https://aireiter.com/api/openapi/submit \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "seedance2",
      "params": {
        "prompt": "スタジオで一人の人物が踊っている",
        "type": "all_reference",
        "image_url": ["https://example.com/character.jpg"],
        "video_url": ["https://example.com/dance.mp4"],
        "aspect_ratio": "16:9",
        "resolution": "720p",
        "video_length": "5",
        "generate_audio": true
      },
      "out_task_id": "my_task_123456"
    }'
  ```

  ```bash cURL（first_last_frame モード） theme={null}
  curl --request POST \
    --url https://aireiter.com/api/openapi/submit \
    --header 'Authorization: Bearer <token>' \
    --header 'Content-Type: application/json' \
    --data '{
      "model": "seedance2",
      "params": {
        "prompt": "日の出から日没への遷移",
        "type": "first_last_frame",
        "image_url": ["https://example.com/start.jpg"],
        "end_image_url": "https://example.com/end.jpg",
        "aspect_ratio": "16:9",
        "resolution": "720p",
        "video_length": "5"
      },
      "out_task_id": "my_task_123457"
    }'
  ```

  ```python Python theme={null}
  import requests

  url = "https://aireiter.com/api/openapi/submit"

  payload = {
      "model": "seedance2",
      "params": {
          "prompt": "スタジオで一人の人物が踊っている",
          "type": "all_reference",
          "image_url": ["https://example.com/character.jpg"],
          "aspect_ratio": "16:9",
          "resolution": "720p",
          "video_length": "5",
          "generate_audio": True
      },
      "out_task_id": "my_task_123456"
  }

  headers = {
      "Authorization": "Bearer <token>",
      "Content-Type": "application/json"
  }

  response = requests.post(url, json=payload, headers=headers)

  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const url = "https://aireiter.com/api/openapi/submit";

  const payload = {
    model: "seedance2",
    params: {
      prompt: "スタジオで一人の人物が踊っている",
      type: "all_reference",
      image_url: ["https://example.com/character.jpg"],
      aspect_ratio: "16:9",
      resolution: "720p",
      video_length: "5",
      generate_audio: true
    },
    out_task_id: "my_task_123456"
  };

  const headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
  };

  fetch(url, {
    method: "POST",
    headers: headers,
    body: JSON.stringify(payload)
  })
    .then(response => response.json())
    .then(data => console.log(data))
    .catch(error => console.error('Error:', error));
  ```

  ```go Go theme={null}
  package main

  import (
      "bytes"
      "encoding/json"
      "fmt"
      "io/ioutil"
      "net/http"
  )

  func main() {
      url := "https://aireiter.com/api/openapi/submit"

      payload := map[string]interface{}{
          "model": "seedance2",
          "params": map[string]interface{}{
              "prompt":         "スタジオで一人の人物が踊っている",
              "type":           "all_reference",
              "image_url":      []string{"https://example.com/character.jpg"},
              "aspect_ratio":   "16:9",
              "resolution":     "720p",
              "video_length":   "5",
              "generate_audio": true,
          },
          "out_task_id": "my_task_123456",
      }

      jsonData, _ := json.Marshal(payload)

      req, _ := http.NewRequest("POST", url, bytes.NewBuffer(jsonData))
      req.Header.Set("Authorization", "Bearer <token>")
      req.Header.Set("Content-Type", "application/json")

      client := &http.Client{}
      resp, err := client.Do(req)
      if err != nil {
          panic(err)
      }
      defer resp.Body.Close()

      body, _ := ioutil.ReadAll(resp.Body)
      fmt.Println(string(body))
  }
  ```

  ```java Java theme={null}
  import java.io.BufferedReader;
  import java.io.InputStreamReader;
  import java.io.OutputStream;
  import java.net.HttpURLConnection;
  import java.net.URL;

  public class Main {
      public static void main(String[] args) {
          try {
              URL url = new URL("https://aireiter.com/api/openapi/submit");
              HttpURLConnection conn = (HttpURLConnection) url.openConnection();
              conn.setRequestMethod("POST");
              conn.setRequestProperty("Authorization", "Bearer <token>");
              conn.setRequestProperty("Content-Type", "application/json");
              conn.setDoOutput(true);

              String jsonPayload = "{\"model\":\"seedance2\",\"params\":{\"prompt\":\"スタジオで一人の人物が踊っている\",\"type\":\"all_reference\",\"image_url\":[\"https://example.com/character.jpg\"],\"aspect_ratio\":\"16:9\",\"resolution\":\"720p\",\"video_length\":\"5\",\"generate_audio\":true},\"out_task_id\":\"my_task_123456\"}";

              OutputStream os = conn.getOutputStream();
              os.write(jsonPayload.getBytes());
              os.flush();
              os.close();

              BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
              String line;
              StringBuilder response = new StringBuilder();
              while ((line = br.readLine()) != null) {
                  response.append(line);
              }
              br.close();

              System.out.println(response.toString());
          } catch (Exception e) {
              e.printStackTrace();
          }
      }
  }
  ```

  ```php PHP theme={null}
  <?php
  $url = "https://aireiter.com/api/openapi/submit";

  $payload = array(
      "model" => "seedance2",
      "params" => array(
          "prompt" => "スタジオで一人の人物が踊っている",
          "type" => "all_reference",
          "image_url" => array("https://example.com/character.jpg"),
          "aspect_ratio" => "16:9",
          "resolution" => "720p",
          "video_length" => "5",
          "generate_audio" => true
      ),
      "out_task_id" => "my_task_123456"
  );

  $ch = curl_init($url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array(
      "Authorization: Bearer <token>",
      "Content-Type: application/json"
  ));
  curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));

  $response = curl_exec($ch);
  curl_close($ch);

  echo $response;
  ?>
  ```

  ```ruby Ruby theme={null}
  require 'net/http'
  require 'json'
  require 'uri'

  url = URI.parse("https://aireiter.com/api/openapi/submit")

  payload = {
    model: "seedance2",
    params: {
      prompt: "スタジオで一人の人物が踊っている",
      type: "all_reference",
      image_url: ["https://example.com/character.jpg"],
      aspect_ratio: "16:9",
      resolution: "720p",
      video_length: "5",
      generate_audio: true
    },
    out_task_id: "my_task_123456"
  }

  http = Net::HTTP.new(url.host, url.port)
  http.use_ssl = true
  request = Net::HTTP::Post.new(url.path)
  request["Authorization"] = "Bearer <token>"
  request["Content-Type"] = "application/json"
  request.body = payload.to_json

  response = http.request(request)
  puts response.body
  ```

  ```swift Swift theme={null}
  import Foundation

  let url = URL(string: "https://aireiter.com/api/openapi/submit")!
  var request = URLRequest(url: url)
  request.httpMethod = "POST"
  request.setValue("Bearer <token>", forHTTPHeaderField: "Authorization")
  request.setValue("application/json", forHTTPHeaderField: "Content-Type")

  let payload: [String: Any] = [
      "model": "seedance2",
      "params": [
          "prompt": "スタジオで一人の人物が踊っている",
          "type": "all_reference",
          "image_url": ["https://example.com/character.jpg"],
          "aspect_ratio": "16:9",
          "resolution": "720p",
          "video_length": "5",
          "generate_audio": true
      ],
      "out_task_id": "my_task_123456"
  ]

  request.httpBody = try? JSONSerialization.data(withJSONObject: payload)

  let task = URLSession.shared.dataTask(with: request) { data, response, error in
      if let data = data {
          print(String(data: data, encoding: .utf8) ?? "")
      }
  }
  task.resume()
  ```

  ```csharp C# theme={null}
  using System;
  using System.Net.Http;
  using System.Text;
  using System.Threading.Tasks;

  class Program
  {
      static async Task Main(string[] args)
      {
          var url = "https://aireiter.com/api/openapi/submit";
          var payload = "{\"model\":\"seedance2\",\"params\":{\"prompt\":\"スタジオで一人の人物が踊っている\",\"type\":\"all_reference\",\"image_url\":[\"https://example.com/character.jpg\"],\"aspect_ratio\":\"16:9\",\"resolution\":\"720p\",\"video_length\":\"5\",\"generate_audio\":true},\"out_task_id\":\"my_task_123456\"}";

          using (var client = new HttpClient())
          {
              client.DefaultRequestHeaders.Add("Authorization", "Bearer <token>");
              var content = new StringContent(payload, Encoding.UTF8, "application/json");
              var response = await client.PostAsync(url, content);
              var result = await response.Content.ReadAsStringAsync();
              Console.WriteLine(result);
          }
      }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "code": "200",
    "success": true,
    "data": {
        "out_task_id": "my_task_123456",
        "status": "pending",
        "estimated_credits": 82.5,
        "created_at": "2026-04-02T08:00:00.000Z"
    }
  }
  ```

  ```json 400 theme={null}
    {
        "statusCode": 400,
        "message": "リクエストパラメータが無効です",
        "ok": false
    }
  ```

  ```json 401 theme={null}
  {
    "error": {
      "code": 401,
      "message": "認証に失敗しました。APIキーを確認してください"
    }
  }
  ```

  ```json 433 theme={null}
    {
      "error": {
        "code": 433,
        "message": "アカウント残高が不足しています。チャージ後に再試行してください"
      }
    }
  ```

  ```json 500 theme={null}
  {
    "error": {
      "code": 500,
      "message": "サーバ内部エラー。後ほど再試行してください"
    }
  }
  ```
</ResponseExample>
