> ## 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 V4.5 テキストから動画生成

PixVerse の最新 v4.5 モデルを使用して、テキスト説明から高品質な動画を生成します。多様な動画制作を実現するために、複数の解像度、アスペクト比、モーションモードをサポートしています。

<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}>
  動画生成用のテキストプロンプト。

  * 最大長：2048 文字
  * 必要なシーンと動作を明確に説明してください
</ParamField>

<ParamField body="aspect_ratio" type="string" required={true}>
  動画のアスペクト比。デフォルト値：`16:9`<br />
  許容される値：`16:9`、`4:3`、`1:1`、`3:4`、`9:16`
</ParamField>

<ParamField body="resolution" type="string" required={true}>
  動画品質。デフォルト値：`540p`<br />
  許容される値：

  * fast\_mode が false の場合：`360p`、`540p`、`720p`、`1080p`
  * fast\_mode が true の場合：`360p`、`540p`、`720p`
</ParamField>

<ParamField body="negative_prompt" type="string" required={false}>
  生成用のネガティブプロンプト。

  * 最大長：2048 文字
</ParamField>

<ParamField body="fast_mode" type="boolean" required={false}>
  高速モードを有効にするかどうか。このモードでは動画をより速く生成しますが、品質が低下する可能性があり、価格も下がります。

  デフォルト値：`false`。
</ParamField>

<ParamField body="style" type="string" required={false}>
  スタイルプリセット（v3.5 のみ）。<br />
  許容される値：`anime`、`3d_animation`、`clay`、`comic`、`cyberpunk`
</ParamField>

<ParamField body="seed" type="integer" required={false}>
  生成に使用するランダムシード。
</ParamField>

## レスポンス情報

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