Skip to content
Docs menu

Video models

Kling 3.0 Turbo

On this page

Kling 3.0 Turbo — high-quality AI video generation.

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

Operations

OperationmodelIdEndpointRequired input
V3 Turbo Image To Videokling-v3-turbo-image-to-videoPOST /api/v1/generateprompt, image_urls, duration, resolution
V3 Turbo Text To Videokling-v3-turbo-text-to-videoPOST /api/v1/generateprompt, duration, aspect_ratio, resolution
Poll taskGET /api/v1/task/{id}?model=kling-v3-turbo-image-to-video

V3 Turbo Image To Video — kling-v3-turbo-image-to-video

FieldTypeRequiredValues / example
promptstringYesText description for the video generation Max 2500 characters. (default: Animate the photo: slow push-in, hair and leaves moving in a gentle breeze, natural light shifting.)
image_urlsstring[]YesURL of the image to be used for the video (image URL)
durationnumberYesThe duration of the generated video in seconds (range 3-15) (default: 5)
resolutionstringYesResolution of the generated video (options: 720p | 1080p) (default: 720p)
bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"kling-v3-turbo-image-to-video","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_urls":["https://example.com/input.jpg"],"duration":5,"resolution":"720p"}}'

V3 Turbo Text To Video — kling-v3-turbo-text-to-video

FieldTypeRequiredValues / example
promptstringYesThe text description of the video you want to generate Max 2500 characters. (default: A slow-motion pour of amber whiskey over a single clear ice sphere in a heavy crystal tumbler, the camera drifting low across a dark walnut bar as warm backlight glints through the swirling liquid.)
durationnumberYesThe duration of the generated video in seconds (range 3-15) (default: 5)
aspect_ratiostringYesThe aspect ratio of the generated video frame (options: 1:1 | 9:16 | 16:9) (default: 16:9)
resolutionstringYesResolution of the generated video (options: 720p | 1080p) (default: 720p)
bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"kling-v3-turbo-text-to-video","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","resolution":"720p"}}'