> ## 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.

# PixVerse V6 トランジション動画生成

PixVerse V6 トランジション動画生成モデル。テキストプロンプトを使用して2枚の画像間に滑らかなトランジション動画を生成し、複数の解像度と音声生成に対応しています。

<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="seed" type="integer">
  再現可能な生成に使用するランダムシード
</ParamField>

<ParamField body="image" type="string" required={true}>
  開始フレーム画像 URL
</ParamField>

<ParamField body="style" type="string">
  動画のビジュアルスタイル
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  トランジション動画のテキスト説明
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  動画の長さ（秒）
</ParamField>

<ParamField body="end_image" type="string">
  トランジション終了フレーム画像 URL
</ParamField>

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

  選択可能な値：`360p`, `540p`, `720p`, `1080p`
</ParamField>

<ParamField body="aspect_ratio" type="string" default="1:1">
  出力動画のアスペクト比
</ParamField>

<ParamField body="thinking_type" type="boolean">
  プロンプト最適化を有効化
</ParamField>

<ParamField body="negative_prompt" type="string">
  不要な要素を除外するためのネガティブプロンプト
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  動画音声生成を有効化
</ParamField>

<ParamField body="generate_multi_clip_switch" type="boolean" default={false}>
  マルチクリップ動画生成を有効化
</ParamField>

## レスポンス情報

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