> ## 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-o1 文生视频

Kling Omni Video O1 是快手首款采用 MVL（多模态视觉语言）技术的统一多模态视频模型。其文本转视频模式可根据文本提示生成电影级视频，并保持主题一致性、自然物理模拟和精准语义理解。

<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="prompt" type="string" required={true}>
  生成的正向提示词
</ParamField>

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

  可选值：`5`, `10`
</ParamField>

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

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

## 响应

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