YeeHooDevelopers
Developer Docs
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

ItemValue
Model IDkling-v2-6
TypeVideo
RegionGlobal / CN
Best Forstandard/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

FieldTypeRequiredDefaultDescription
modelstringYes-Must be kling-v2-6
promptstringYes-Video prompt
reference_imagesstring[]No-Reference image URLs
modestringNostdQuality tier: standard, pro, or 4K where supported
audiobooleanNofalseWhether to generate audio
durationintegerNo5Output duration
aspect_ratiostringNo16:9Frame ratio

Supported Enums

FieldValues
modestd (720P) pro (1080P)
audiofalse true
duration5 10
aspect_ratio16:9 9:16 1:1

Kling V2.6 Integration Notes

  • Resolution is represented by mode; do not also send resolution.
  • Do not send fields absent from the model schema; use the live GET /v1/models response as authoritative.

Smallest Example

{
  "model": "kling-v2-6",
  "prompt": "A cinematic product reveal"
}

Related Pages