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

# kling-v2-5-turbo

> 通过可灵旧版 API 使用 Kling 2.5 Turbo 文生视频和图生视频。

Kling 2.5 Turbo 是快手可灵的视频生成模型，通过 AnyFast 提供可灵旧版 API。

## 核心能力

* 文生视频和单镜头图生视频
* 固定生成 5 秒或 10 秒
* `std` 为 720p，`pro` 为 1080p
* 首尾帧生成仅支持 1080p `pro` 模式
* 文生视频支持 `16:9`、`9:16`、`1:1`

<Note>Kling 2.5 Turbo 不支持原生音频、指定音色、多镜头、运动笔刷和运镜控制。</Note>

```bash cURL theme={null}
curl --request POST \
  --url https://www.anyfast.ai/kling/v1/videos/text2video \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"model_name":"kling-2.5-turbo","prompt":"一艘纸船穿过雨后的街道","duration":"5","mode":"std","aspect_ratio":"16:9"}'
```

```bash cURL theme={null}
curl --request POST \
  --url https://www.anyfast.ai/kling/v1/videos/image2video \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{"model_name":"kling-2.5-turbo","image":"https://example.com/frame.png","prompt":"人物转身看向窗外","duration":"5","mode":"pro"}'
```

<Card title="Kling 2.5 Turbo API 参考" icon="code" href="/zh/api-reference/model-api/kuaishou/kling-v2-5-turbo">查看完整旧版 API 字段。</Card>

<script src="/feedback.js" />
