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
| Item | Value |
|---|---|
| Model ID | kling-3.0-turbo |
| Type | Video |
| Region | Global / CN |
| Best For | speed-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
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Must be kling-3.0-turbo |
prompt | string | Yes | - | Video prompt |
reference_images | string[] | No | - | Reference image URLs |
duration | integer | No | 5 | Output duration |
resolution | string | No | 720p | Output resolution |
aspect_ratio | string | No | 16:9 | Frame ratio |
Supported Enums
| Field | Values |
|---|---|
duration | 3 through 15 |
resolution | 720p 1080p |
aspect_ratio | 16:9 9:16 1:1 |
Kling 3.0 Turbo Integration Notes
- This model has no audio field; do not send
audioorgenerate_audio. has_image_inputis derived from reference images by the server.- Do not send fields absent from the model schema; use the live
GET /v1/modelsresponse as authoritative.
Smallest Example
{
"model": "kling-3.0-turbo",
"prompt": "A cinematic product reveal"
}