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

> Use Kling 2.5 Turbo text-to-video and image-to-video through the Kling Legacy APIs.

Kling 2.5 Turbo is a cost-efficient Kuaishou video model available through AnyFast with the Kling Legacy API structure.

## Capabilities

* Text-to-video and single-shot image-to-video
* Fixed 5-second or 10-second output
* `std` mode at 720p and `pro` mode at 1080p
* Start-and-end-frame generation in 1080p `pro` mode
* `16:9`, `9:16`, or `1:1` for text-to-video

<Note>Kling 2.5 Turbo does not support native audio, specified voices, multi-shot generation, motion brush, or camera control.</Note>

## Text to video

```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":"A paper boat crosses a rain-covered street","duration":"5","mode":"std","aspect_ratio":"16:9"}'
```

## Image to video

```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":"The subject turns toward the window","duration":"5","mode":"pro"}'
```

<Card title="Kling 2.5 Turbo API reference" icon="code" href="/api-reference/model-api/kuaishou/kling-v2-5-turbo">View the complete Legacy API fields.</Card>

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