Kling

Kling 3.0

Video
Not available
Generate Now

Kling 3.0 with motion control.

Type
Video Motion Control
Billed
per sec
Provider
Kling

Pricing

/ sec
1080p$0.41 / sec
720p$0.30 / sec

Default duration: 30s

Supported parameters

modelSettings
  • Promptprompt
  • Image Inputinput_urls
  • Video Urlsvideo_urls
  • Character Orientationcharacter_orientation
  • Modemode

Code examples

POST /v1/generations

Generations are async — the request returns immediately with an id; poll for the result.

python
import requests

response = requests.post(
    "https://api.modelstack.cc/v1/generations",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
    json={
        "type": "VIDEO_MOTION_CONTROL",
        "prompt": "A serene mountain landscape at sunset",
        "model": "kling/3.0"
    },
)
generation_id = response.json()["data"]["id"]

# Poll for the result
result = requests.get(
    f"https://api.modelstack.cc/v1/generations/{generation_id}",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])

Related models

Frequently asked questions

How is Kling 3.0 billed on ModelStack?expand_more
Kling 3.0 (Video Motion Control) is billed at a flat, prepaid rate of $9.00 / vid — generation pricing has no tier-based discounts. Final request costs are available in the console.
What other generation types does Kling 3.0 support?expand_more
Besides Video Motion Control, Kling 3.0 also supports: Text to Video, Image to Video.
Which parameters does Kling 3.0 support?expand_more
Kling 3.0 supports: Prompt, Image Input, Video Urls, Character Orientation, Mode.
How can I generate with Kling 3.0?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `kling/3.0` and type `VIDEO_MOTION_CONTROL` — see the code example above.