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

# Kling V2.6 Pro モーションコントロール

これは非同期 API であり、非同期タスクの `task_id` のみを返します。

<Tip>
  これは**非同期**API であり、非同期タスクの task\_id のみを返します。この task\_id を使用して [タスク結果照会 API](/ja/docs/models/reference-get-async-task-result) にリクエストし、生成結果を取得してください。
</Tip>

## リクエストヘッダー

<ParamField header="Content-Type" type="string" required={true}>
  列挙値: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 認証形式: Bearer \{\{API Key}}。
</ParamField>

## リクエストボディ

<ParamField body="image" type="string" required={true}>
  参照画像 URL または base64 エンコード画像。`.jpg`、`.jpeg`、`.png` をサポートします。
  画像ファイルサイズは 10MB 以下である必要があります。幅と高さはいずれも >= 300px である必要があります。アスペクト比は 1:2.5 から 2.5:1 の間である必要があります。
</ParamField>

<ParamField body="video" type="string" required={true}>
  参照モーション動画 URL。`.mp4`、`.mov` をサポートします。
  動画ファイルサイズは 10MB 以下である必要があります。幅と高さはいずれも >= 300px である必要があります。長さは 3～30 秒です。
</ParamField>

<ParamField body="prompt" type="string">
  シーンの説明、スタイル、ライティングなどのポジティブプロンプト。
</ParamField>

<ParamField body="negative_prompt" type="string">
  ネガティブプロンプト。長さは 2500 文字以下です。
</ParamField>

<ParamField body="keep_original_sound" type="boolean" default={true}>
  参照動画の元の音声を保持するかどうか。
</ParamField>

<ParamField body="character_orientation" type="string" required={true}>
  出力フレームモード：

  * `image`：参照画像の構図に合わせます（出力 5 秒）
  * `video`：参照動画の構図に合わせます（最長 30 秒）

  選択可能な値：`image`, `video`
</ParamField>

## レスポンス情報

<ResponseField name="task_id" type="string" required={true}>
  task\_id を使用して [タスク結果照会 API](/ja/docs/models/reference-get-async-task-result) にリクエストし、生成された出力を取得します。
</ResponseField>
