Supported Models and ParametersVideo Models
Kling V2.6
Quality tiers, audio, and duration parameters for kling-v2-6.
kling-v2-6 is standard/pro tiers with optional generated audio. Its backend model schema is the source of truth for supported parameters.
Quick Facts
| Item | Value |
|---|---|
| Model ID | kling-v2-6 |
| Type | Video |
| Region | Global / CN |
| Best For | standard/pro tiers with optional generated audio |
Recommended Request Shape
Call POST /v1/quote first and send exactly the same parameters when creating the task.
{
"model": "kling-v2-6",
"prompt": "A cinematic product reveal",
"mode": "pro",
"audio": false,
"duration": 5,
"aspect_ratio": "16:9"
}Field Reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Must be kling-v2-6 |
prompt | string | Yes | - | Video prompt |
reference_images | string[] | No | - | Reference image URLs |
mode | string | No | std | Quality tier: standard, pro, or 4K where supported |
audio | boolean | No | false | Whether to generate audio |
duration | integer | No | 5 | Output duration |
aspect_ratio | string | No | 16:9 | Frame ratio |
Supported Enums
| Field | Values |
|---|---|
mode | std (720P) pro (1080P) |
audio | false true |
duration | 5 10 |
aspect_ratio | 16:9 9:16 1:1 |
Kling V2.6 Integration Notes
- Resolution is represented by
mode; do not also sendresolution. - Do not send fields absent from the model schema; use the live
GET /v1/modelsresponse as authoritative.
Smallest Example
{
"model": "kling-v2-6",
"prompt": "A cinematic product reveal"
}