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

Generate videos from text prompts using the PixVerse V6 model, with support for configurable resolution, duration, aspect ratio, and optional 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="prompt" type="string" required={true}>
  Text description of the video content.
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  Video duration, in seconds.

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

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

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

<ParamField body="aspect_ratio" type="string" default="16:9">
  Aspect ratio of the output video.

  Options: `16:9`, `9:16`, `1:1`, `4:3`, `3:4`
</ParamField>

<ParamField body="thinking_type" type="string" default="auto">
  Thinking type during generation.
</ParamField>

<ParamField body="negative_prompt" type="string">
  Elements to avoid in the generated video.
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  Whether to enable video audio generation.
</ParamField>

## Response

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