Kling

Kling Avatar Pro

Video
Not available
Generate Now

Kling AI Avatar Pro. Premium quality talking avatars from audio.

Type
Speech to Video
Billed
per vid
Provider
Kling

Pricing

/ vid
Price$9.00 / vid

Supported parameters

modelSettings
  • Promptprompt
  • Image Inputimage_url
  • Audio Inputaudio_input

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": "SPEECH_TO_VIDEO",
        "prompt": "A serene mountain landscape at sunset",
        "model": "kling/ai-avatar-pro"
    },
)
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 Avatar Pro billed on ModelStack?expand_more
Kling Avatar Pro (Speech to Video) 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 Avatar Pro support?expand_more
Besides Speech to Video, Kling Avatar Pro also supports: Image to Video.
Which parameters does Kling Avatar Pro support?expand_more
Kling Avatar Pro supports: Prompt, Image Input, Audio Input.
How can I generate with Kling Avatar Pro?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `kling/ai-avatar-pro` and type `SPEECH_TO_VIDEO` — see the code example above.