WaveAPI
Back to Explore
KlingVideo

kling-3.0-turbo

Kuaishou's speed-optimized variant of Kling 3.0 for AI video generation, producing 720p or 1080p clips from 3 to 15 seconds with native synchronized audio and strong multi-shot consistency. Optimized for rapid iteration and high-volume production while retaining good prompt adherence and lip-sync.

Video generationgenerate16:9 / 9:16 / 1:1

Output

Output will appear here after running

Prompt

0 / 4000
⌘/Ctrl + Enter to run

Video Info

Resolution
720P
Duration
5s
Aspect Ratio
16:9
Model
kling-3.0-turbo
Cost
$0.6436

API Usage Example

import requests, time

API_KEY = "your-qwave-key"
BASE = "https://api.qingwave.com/v1"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}

# 1. Submit task — returns task_id immediately
r = requests.post(f"{BASE}/tasks", headers=HEADERS, json={
    "model": "kling-3.0-turbo",
    "prompt": "A cat walking on the beach at sunset",
    "aspect_ratio": "16:9",
    "resolution": "720P",
    "duration": 5
  })
task_id = r.json()["task_id"]

# 2. Poll until completed (typical: 1-30s for images, longer for video)
while True:
    s = requests.get(f"{BASE}/tasks/{task_id}", headers=HEADERS).json()
    if s["status"] == "completed":
        for media in s["result"].get("videos", []):
            print(media["url"])
        break
    if s["status"] in ("failed", "cancelled"):
        raise RuntimeError(s.get("error", {}).get("message"))
    time.sleep(2)