> ## 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="image" type="string" required={true}>
  動画の最初のフレーム。

  * 対応画像形式には .jpg/.jpeg/.png が含まれます
  * 画像ファイルサイズは 10MB を超えてはいけません
  * 画像解像度は 300\*300 ピクセル未満であってはいけません
  * 画像のアスペクト比は 1:2.5 ～ 2.5:1 の範囲内である必要があります
</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>
