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

# Kling 3.0

> 支持文生视频、首尾帧图生与动作控制；普通生成支持原生音频和多镜头。动作控制仅支持 720p/1080p。

支持文生视频、首尾帧图生与动作控制；普通生成支持原生音频和多镜头。动作控制仅支持 720p/1080p。

## 模型规格

| 项目        | 说明                                                                                                                                                                         |
| --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| ID        | `kling-3.0`                                                                                                                                                                |
| 接口        | [文生视频](/cn/api-reference/endpoint/kling-text-to-video) / [图生视频](/cn/api-reference/endpoint/kling-image-to-video) / [动作控制](/cn/api-reference/endpoint/kling-motion-control) |
| 普通生成分辨率   | 720p / 1080p / 4k                                                                                                                                                          |
| 普通生成时长（秒） | 3-15                                                                                                                                                                       |

以上时长不用于动作控制；有媒体输入时还须遵守对应接口的组合限制。模型写在路径中，请求体保留原生层级，不用 metadata。

## 请求示例

先设置环境变量 `MIXROUTE_API_KEY`。将 `example.com` 媒体地址替换为无需登录即可访问的真实素材。

```bash theme={null}
curl --request POST "https://api.mixroute.ai/kling/text-to-video/kling-3.0" \
  --header "Authorization: Bearer $MIXROUTE_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
  "prompt": "A red ceramic mug slowly rotates on a white tabletop. Static camera, soft studio lighting.",
  "settings": {
    "resolution": "720p",
    "duration": 5,
    "aspect_ratio": "16:9",
    "audio": "off",
    "multi_shot": false
  },
  "options": {
    "watermark_info": {
      "enabled": false
    }
  }
}'
```

保存提交返回的 `data.id`，通过 [查询 Kling 任务](/cn/api-reference/endpoint/kling-tasks) 读取状态与 `outputs`。通用选项与基础计费见 [Kling 概览](/cn/api-reference/endpoint/kling)。
