YeeHooDevelopers
Developer Docs
Supported Models and ParametersVideo Models

Kling V3

Standard, pro, 4K, audio, and duration parameters for kling-v3.

kling-v3 is standard, pro, and 4K tiers with optional generated audio. Its backend model schema is the source of truth for supported parameters.

Quick Facts

ItemValue
Model IDkling-v3
TypeVideo
RegionGlobal / CN
Best Forstandard, pro, and 4K 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-v3",
  "prompt": "A cinematic product reveal",
  "mode": "pro",
  "audio": false,
  "duration": 5,
  "aspect_ratio": "16:9"
}

Field Reference

FieldTypeRequiredDefaultDescription
modelstringYes-Must be kling-v3
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) 4k
audiofalse true
duration4 through 15
aspect_ratio16:9 9:16 1:1

Kling V3 Integration Notes

  • Motion-control fields are not exposed by the regular public flow.
  • 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-v3",
  "prompt": "A cinematic product reveal"
}

Related Pages