Skip to content
Docs menu

Video models

Kling 2.5 Turbo

On this page

Kling 2.5 Turbo — high-quality AI video generation.

modelIdkling-v2-5-turbo-text-to-video-pro, kling-v2-5-turbo-image-to-video-pro
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
V2 5 Turbo Text To Video Prokling-v2-5-turbo-text-to-video-proPOST /api/v1/generateprompt
V2 5 Turbo Image To Video Prokling-v2-5-turbo-image-to-video-proPOST /api/v1/generateprompt, image_url
Poll taskGET /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

FieldTypeRequiredValues / example
promptstringYesThe 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.)
durationstringNoThe duration of the generated video in seconds (options: 5 | 10) (default: 5)
aspect_ratiostringNoThe aspect ratio of the generated video frame (options: 16:9 | 9:16 | 1:1) (default: 16:9)
negative_promptstringNoThings to avoid in the generated video Max 2500 characters. (default: blur, distort, and low quality)
cfg_scalenumberNoThe 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_checkerbooleanNoA 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

FieldTypeRequiredValues / example
promptstringYesText 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_urlstringYesURL of the image to be used for the video (image URL)
tail_image_urlstringNoTail frame image of video (image URL)
durationstringNoThe duration of the generated video in seconds (options: 5 | 10) (default: 5)
negative_promptstringNoElements to avoid in the video Max 2496 characters. (default: blur, distort, and low quality)
cfg_scalenumberNoThe 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_checkerbooleanNoA 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}}'