YeeHooDevelopers
Developer Docs
Supported Models and ParametersVideo Models

Kling V3 Omni

Quality tiers, audio, and reference-video URL parameters for kling-v3-omni.

kling-v3-omni is multimodal Kling generation with reference video URLs. Its backend model schema is the source of truth for supported parameters.

Quick Facts

ItemValue
Model IDkling-v3-omni
TypeVideo
RegionGlobal / CN
Best Formultimodal Kling generation with reference video URLs

Recommended Request Shape

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

{
  "model": "kling-v3-omni",
  "prompt": "A cinematic product reveal",
  "mode": "pro",
  "audio": false,
  "duration": 8,
  "reference_videos": ["https://cdn.example.com/ref.mp4"],
  "input_video_duration": 8
}

Field Reference

FieldTypeRequiredDefaultDescription
modelstringYes-Must be kling-v3-omni
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
reference_videosstring[]No-Up to 3 reference video URLs
input_video_durationnumberWith video input-Actual processed input-video seconds; must be greater than 0

Supported Enums

FieldValues
modestd (720P) pro (1080P) 4k
audiofalse true
duration4 through 15
aspect_ratio16:9 9:16 1:1

Kling V3 Omni Integration Notes

  • When reference videos are present, audio must be false.
  • has_video_input is derived from reference_videos 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-v3-omni",
  "prompt": "A cinematic product reveal"
}

Related Pages