YeeHooDevelopers
Developer Docs
Supported Models and ParametersVideo Models

Kling 3.0 Turbo

Duration, resolution, and reference-image parameters for kling-3.0-turbo.

kling-3.0-turbo is speed-first Kling video generation. Its backend model schema is the source of truth for supported parameters.

Quick Facts

ItemValue
Model IDkling-3.0-turbo
TypeVideo
RegionGlobal / CN
Best Forspeed-first Kling video generation

Recommended Request Shape

Call POST /v1/quote first and send exactly the same parameters when creating the task.

{
  "model": "kling-3.0-turbo",
  "prompt": "A cinematic product reveal",
  "duration": 5,
  "resolution": "720p",
  "aspect_ratio": "16:9"
}

Field Reference

FieldTypeRequiredDefaultDescription
modelstringYes-Must be kling-3.0-turbo
promptstringYes-Video prompt
reference_imagesstring[]No-Reference image URLs
durationintegerNo5Output duration
resolutionstringNo720pOutput resolution
aspect_ratiostringNo16:9Frame ratio

Supported Enums

FieldValues
duration3 through 15
resolution720p 1080p
aspect_ratio16:9 9:16 1:1

Kling 3.0 Turbo Integration Notes

  • This model has no audio field; do not send audio or generate_audio.
  • has_image_input is derived from reference images by the server.
  • Do not send fields absent from the model schema; use the live GET /v1/models response as authoritative.

Smallest Example

{
  "model": "kling-3.0-turbo",
  "prompt": "A cinematic product reveal"
}

Related Pages