> ## 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 Image-to-Video

The PixVerse C1 image-to-video model converts static images into cinematic dynamic videos, supporting durations of 1–15 seconds, up to 1080p resolution, and optional native audio generation.

<Tip>
  This is an **asynchronous** API and will only return the task\_id of the asynchronous task. You should use this task\_id to request the [Get Task Result API](/en/docs/models/reference-get-async-task-result) to retrieve the generated result.
</Tip>

## Request Headers

<ParamField header="Content-Type" type="string" required={true}>
  Enum value: `application/json`
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer authentication format: Bearer \{\{API Key}}.
</ParamField>

## Request Body

<ParamField body="image" type="string" required={true}>
  URL of the reference image for the first frame of the video; supports .jpg, .jpeg, and .png formats.
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  A text prompt describing the desired motion effect, camera style, and atmosphere, up to 2048 characters.

  Length limit: 0 - 2048
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  Duration of the generated video in seconds, ranging from 1 to 15.

  Value range: \[1, 15]
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  Resolution of the output video.

  Available values: `360p`, `540p`, `720p`, `1080p`
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  Whether to generate native audio while generating the video.
</ParamField>

## Response Information

<ResponseField name="task_id" type="string" required={true}>
  Use the task\_id to request the [Get Task Result API](/en/docs/models/reference-get-async-task-result) to retrieve the generated output.
</ResponseField>
