> ## 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.

# Kling v3.0 Standard 文字生成视频

Kling v3.0 Standard 文字生成视频可根据文本提示生成高质量视频，具备流畅的运动效果、电影级画面、精准的提示词遵循能力，并支持可选的原生音频共同生成。支持 3-15 秒时长和多种画面比例。

<Tip>
  这是一个**异步**API，只会返回异步任务的 task\_id。您应该使用该 task\_id 请求 [查询任务结果 API](/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="sound" type="boolean" default={false}>
  是否在生成视频时同时生成音频。支持中文和英文语音输出。
</ParamField>

<ParamField body="prompt" type="string" required={true}>
  生成视频的正向提示词文本；不可超过 2500 个字符。

  长度限制：0 - 2500
</ParamField>

<ParamField body="duration" type="integer" default={5}>
  生成视频的持续时间（秒）。

  可选值：`3`, `4`, `5`, `6`, `7`, `8`, `9`, `10`, `11`, `12`, `13`, `14`, `15`
</ParamField>

<ParamField body="cfg_scale" type="number" default={0.5}>
  控制视频生成的灵活性。设为 0 可获得最大创意自由，0.5（默认）为平衡效果，设为 1 则严格遵循提示词。

  取值范围：\[0, 1]
</ParamField>

<ParamField body="aspect_ratio" type="string" default="16:9">
  生成视频的宽高比。

  可选值：`16:9`, `9:16`, `1:1`
</ParamField>

<ParamField body="negative_prompt" type="string">
  反向提示词，描述需要在生成视频中避免的元素；长度不超过 2500 字符。

  长度限制：0 - 2500
</ParamField>

## 响应

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