> ## 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 转场视频生成

PixVerse V6 转场视频生成模型。通过文本提示在两张图片之间生成平滑的转场视频，支持多种分辨率和音频生成。

<Tip>
  这是一个**异步**API，只会返回异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/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 密钥}}。
</ParamField>

## 请求体

<ParamField body="seed" type="integer">
  随机种子，用于可复现的生成
</ParamField>

<ParamField body="image" type="string" required={true}>
  起始帧图片 URL
</ParamField>

<ParamField body="style" type="string">
  视频的视觉风格
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  转场视频的文本描述
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  视频时长（秒）
</ParamField>

<ParamField body="end_image" type="string">
  转场结束帧图片 URL
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  输出视频分辨率

  可选值：`360p`, `540p`, `720p`, `1080p`
</ParamField>

<ParamField body="aspect_ratio" type="string" default="1:1">
  输出视频的宽高比
</ParamField>

<ParamField body="thinking_type" type="boolean">
  启用提示词优化
</ParamField>

<ParamField body="negative_prompt" type="string">
  反向提示词，用于排除不需要的元素
</ParamField>

<ParamField body="generate_audio_switch" type="boolean" default={false}>
  启用视频音频生成
</ParamField>

<ParamField body="generate_multi_clip_switch" type="boolean" default={false}>
  启用多片段视频生成
</ParamField>

## 响应信息

<ResponseField name="task_id" type="string" required={true}>
  使用 task\_id 请求 [查询任务结果 API](/docs/models/reference-get-async-task-result) 来检索生成的输出。
</ResponseField>
