> ## 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 C1 開始・終了フレームから動画生成

PixVerse C1 開始・終了フレームから動画生成モデルは、開始フレームと終了フレームに基づいて滑らかな動画トランジション効果を生成できます。複数の解像度と長さの設定に対応し、音声の同時生成も任意で選択できます。

<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
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  トランジション効果を説明するポジティブプロンプトテキスト

  長さ制限：0 - 2048
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  生成動画の長さ（秒）、範囲 1-15

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

<ParamField body="end_image" type="string" required={true}>
  終了フレーム画像 URL
</ParamField>

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

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

<ParamField body="generate_audio_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>
