Video models
Kling 2.5 Turbo
On this page
Kling 2.5 Turbo — high-quality AI video generation.
| modelId | kling-v2-5-turbo-text-to-video-pro, kling-v2-5-turbo-image-to-video-pro |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| V2 5 Turbo Text To Video Pro | kling-v2-5-turbo-text-to-video-pro | POST /api/v1/generate | prompt |
| V2 5 Turbo Image To Video Pro | kling-v2-5-turbo-image-to-video-pro | POST /api/v1/generate | prompt, image_url |
| Poll task | — | GET /api/v1/task/{id}?model=kling-v2-5-turbo-text-to-video-pro | — |
V2 5 Turbo Text To Video Pro — kling-v2-5-turbo-text-to-video-pro
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | The text description of the video you want to generate Max 2500 characters. (default: A copper teakettle on a stovetop begins to steam, wisps curling upward and catching warm morning light as the camera slowly drifts closer, condensation glinting across the polished metal.) |
| duration | string | No | The duration of the generated video in seconds (options: 5 | 10) (default: 5) |
| aspect_ratio | string | No | The aspect ratio of the generated video frame (options: 16:9 | 9:16 | 1:1) (default: 16:9) |
| negative_prompt | string | No | Things to avoid in the generated video Max 2500 characters. (default: blur, distort, and low quality) |
| cfg_scale | number | No | The CFG (Classifier Free Guidance) scale is a measure of how close you want the model to stick to your prompt (range 0-1) (default: 0.5) |
| nsfw_checker | boolean | No | A configurable parameter. Defaults to true in the Playground. (true/false) (default: true) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"kling-v2-5-turbo-text-to-video-pro","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","duration":"5","aspect_ratio":"16:9","negative_prompt":"blurry, low quality, distorted, watermark, text","cfg_scale":0.5,"nsfw_checker":true}}'V2 5 Turbo Image To Video Pro — kling-v2-5-turbo-image-to-video-pro
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text description for the video generation Max 2500 characters. (default: Animate the shot with a smooth crane move rising up a glass skyscraper facade at night, elevator lights streaking upward and city reflections rippling across the mirrored panes.) |
| image_url | string | Yes | URL of the image to be used for the video (image URL) |
| tail_image_url | string | No | Tail frame image of video (image URL) |
| duration | string | No | The duration of the generated video in seconds (options: 5 | 10) (default: 5) |
| negative_prompt | string | No | Elements to avoid in the video Max 2496 characters. (default: blur, distort, and low quality) |
| cfg_scale | number | No | The CFG (Classifier Free Guidance) scale is a measure of how close you want the model to stick to your prompt (range 0-1) (default: 0.5) |
| nsfw_checker | boolean | No | A configurable parameter. Defaults to true in the Playground. (true/false) (default: true) |
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"kling-v2-5-turbo-image-to-video-pro","input":{"prompt":"A cinematic aerial shot of a coastal town at golden hour, gentle waves rolling onto the shore, warm light, slow camera push-in.","image_url":"https://example.com/input.jpg","tail_image_url":"https://example.com/input.jpg","duration":"5","negative_prompt":"blurry, low quality, distorted, watermark, text","cfg_scale":0.5,"nsfw_checker":true}}'