> ## 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 モデルを使用して、テキストプロンプトに基づいて動画を生成します。設定可能な解像度、長さ、アスペクト比、およびオプションの音声生成に対応しています。

<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="prompt" type="string" required={true}>
  動画内容のテキスト説明。
</ParamField>

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

  値の範囲：\[1, 15]
</ParamField>

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

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

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

  使用可能な値：`16:9`, `9:16`, `1:1`, `4:3`, `3:4`
</ParamField>

<ParamField body="thinking_type" type="string" default="auto">
  生成時の思考タイプ。
</ParamField>

<ParamField body="negative_prompt" type="string">
  生成動画で避けるべき要素。
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  動画音声生成を有効にするかどうか。
</ParamField>

## レスポンス情報

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