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

PixVerse V6 image-to-video model. It supports converting static images into dynamic videos, with support for multiple resolutions and audio generation.

<Tip>
  This is an **asynchronous** API and only returns the asynchronous task's task\_id. 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="seed" type="integer">
  Random seed, used to reproduce generation results.
</ParamField>

<ParamField body="image" type="string" required={true}>
  Input image URL; supports .jpg, .jpeg, and .png formats.
  The image file size must not exceed 10 MB; both width and height must be >= 300 px; the aspect ratio must be between 1:2.5 and 2.5:1.
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  Positive prompt text for generating the video; must not exceed 2500 characters.

  Length limit: 0 - 2500
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  Duration of the generated video (seconds), range 1-15.

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

<ParamField body="cfg_scale" type="number" default={0.5}>
  Guidance strength, controlling how closely the video generation follows the prompt. Lower values produce more natural motion, while higher values follow the prompt more closely.

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

<ParamField body="resolution" type="string" default="720p">
  Output video resolution.

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

<ParamField body="thinking_type" type="string" default="auto">
  Inference mode, controlling the thinking approach during generation.
</ParamField>

<ParamField body="negative_prompt" type="string">
  Negative prompt, describing elements to avoid; length must not exceed 2500 characters.

  Length limit: 0 - 2500
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  Whether to generate audio at the same time when generating the video.
</ParamField>

## Response

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