> ## Documentation Index
> Fetch the complete documentation index at: https://ppio.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Seedance V1 Lite 文生视频

Seedance V1 Lite 是一款 AI 视频模型，专为生成连贯的多镜头视频而设计，提供流畅的运动和对详细提示的精确遵循。它支持 480p、720p 和 1080p 的分辨率。

<Warning>
  本接口支持个人认证及企业认证用户调用。请参见 [实名认证](/support/identity-verification)，完成个人用户认证或企业用户认证，以确保可以正常使用本功能。
</Warning>

## 请求头

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

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式，例如：Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="prompt" type="string" required={true}>
  视频生成的文本提示；正面文本提示；支持中英文，建议不超过500字。
</ParamField>

<ParamField body="resolution" type="string" required={true}>
  视频质量。可接受的值：`480p`，`720p`，`1080p`
</ParamField>

<ParamField body="aspect_ratio" type="string" default="16:9">
  生成视频的长宽比。
  可接受的值：`21:9`，`16:9`，`4:3`，`1:1`，`3:4`，`9:16`
</ParamField>

<ParamField body="duration" type="integer" required={true} default={5}>
  指定生成视频的长度（以秒为单位）。可用选项：`5`，`10`
</ParamField>

<ParamField body="camera_fixed" type="boolean" default={false}>
  确定相机位置是否应保持固定。
</ParamField>

<ParamField body="seed" type="integer" default={-1} minimum={-1} maximum={2147483647}>
  用于生成的随机种子。-1 表示将使用随机种子。
</ParamField>

<ParamField body="watermark" type="boolean" required={false} default={false}>
  为生成的视频添加水印。

  * `false`：不添加水印。
  * `true`：在视频添加文字的水印，标识由人工智能生成合成。
</ParamField>

## 响应

<ResponseField name="task_id" type="string" required={true}>
  异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/models/reference-get-async-task-result) 以获取生成结果
</ResponseField>
