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. (example: A copper teakettle on a stovetop begins to steam, wisps curling upward and catching warm morning light as the camera slowly drifts closer, condensation… — full value in the request example)
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)
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 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":"5","aspect_ratio":"16:9","negative_prompt":"blur, distort, and low quality"}}'

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. (example: 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… — full value in the request example)
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)
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":"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":"https://you.bot/examples/grok-imagine-text-to-image.jpg","tail_image_url":"https://you.bot/examples/grok-imagine-text-to-image.jpg","duration":"5","negative_prompt":"blur, distort, and low quality"}}'