Kling 2.0 Master is a Text-to-Video model featuring a Multi-Elements Editor, improved prompt understanding, and refined character motion. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Inattivo
$1.3per esecuzione
A woman reading a book in a cozy café, sunlight streaming through the window, steam rising from her coffee, slow camera pan
A shiny toy robot with expressive LED eyes is dancing in a minimalist showroom, its limbs jointed like an action figure, smooth plastic reflections and exaggerated gestures, studio lighting, stop-motion feel, playful and quirky vibe.
A woman in a retro red dress sits gracefully by a sunlit window, her eyes gently following the dust particles dancing in the warm light. As she slowly turns her head to look outside, the lace curtains flutter slightly. The camera tilts from a side angle to a gentle front focus, capturing the timeless serenity of the moment.
A confident fashion model in a sleek black dress walks slowly forward across a minimalist white studio set. The spotlight follows her movement as she strikes a brief pose, then turns elegantly, her hair catching the light. A steady tracking shot captures her poise from multiple angles.
A futuristic agent in sleek tactical armor walks briskly through a glowing corridor lined with digital panels. His visor lights pulse with data as he scans the environment. The camera follows from behind, then rotates to a frontal close-up as he stops and raises his hand to activate a floating holographic map.
A woman in a crisp white blouse sits quietly at a wooden desk, her fingers gently tapping a closed book. Her eyes wander across the pages in thought as the soft afternoon light shifts through the blinds. A slow inward dolly shot captures her introspective expression, hinting at a story beneath her silence.
An anime-style red-haired schoolgirl runs with a piece of toast in her mouth, crossing a sunlit pedestrian crossing with cherry trees lining the street, school bag swinging behind her, camera tracking from the front as she dashes past, vibrant and energetic animation style.
A young man casually checking his phone while walking slowly along a neon-lit city street at dusk. The lights flicker gently as passing cars reflect on the wet pavement. A soft breeze ruffles his hair and clothes, and the camera slowly zooms in with a shallow depth of field.
A lone astronaut walks slowly across the surface of the moon, earth visible in the black sky behind, dust kicking up with each step in slow motion, camera rotates around in a low orbit-style tracking shot, highly realistic and cinematic space atmosphere.
An anime-style schoolgirl with long flowing hair stands under cherry blossom trees, soft petals falling around her as she gently spins and smiles at the camera, golden hour lighting, soft pastel tones, dreamy anime aesthetic with shallow depth of field.
A robotic arm assembling electronic parts on a conveyor belt, precise movements, industrial lighting, sparks flying
A stylized 3D toy-like character with oversized head and glossy plastic texture, wearing urban streetwear with bright colors and bold patterns. The video shows the character dancing in a minimalistic studio with colorful geometric backgrounds. Camera angles frequently cut between close-up facial expressions and full-body dance moves. The lighting highlights the shiny surfaces and cartoonish details, with dynamic shadows adding depth. The overall vibe is trendy, fun, and highly stylized, appealing to a modern urban audience.
A futuristic cyborg girl walks slowly down a glowing sci-fi corridor, mechanical parts on her body softly blinking. Her silver hair flows as she turns to glance at the camera. The camera follows her from behind with a slow dolly movement, creating a cinematic, high-tech atmosphere with neon lights and holographic displays.
A fantasy knight standing on a cliff at sunset, cape fluttering, camera zooms out to reveal vast mountain range, slow motion, golden hour lighting
A female ballet dancer is performing under a single spotlight on a dark stage, her body spinning gracefully, white dress twirling in slow motion, dust particles visible in the air, cinematic performance moment, focused camera orbit around her.
A futuristic pop idol girl with glowing pigtails and holographic outfit is dancing on a neon-lit virtual stage, surrounded by digital confetti and cheering avatars, ultra-bright lights and synchronized camera motion, vibrant J-pop aesthetic.
A ballerina dancing in an abandoned theater, spotlight follows her movements, dramatic angles, particles of dust in the air, emotional climax
Kling V2.0 Text-to-Video Master is Kuaishou's flagship text-to-video generation model that delivers exceptional cinematic quality and realistic motion. Generate stunning videos from text descriptions with industry-leading visual fidelity and natural movement.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the video you want to generate. |
| aspect_ratio | No | Output aspect ratio: 16:9, 9:16, 1:1 (default: 16:9). |
| negative_prompt | No | Elements to avoid in the generated video. |
| duration | No | Video length: 5 or 10 seconds (default: 5). |
| Duration | Price |
|---|---|
| 5 seconds | $1.30 |
| 10 seconds | $2.60 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/kwaivgi/kling-v2.0-t2v-master with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Kling v2.0 T2v Master below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/kwaivgi/kling-v2.0-t2v-master" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"negative_prompt": "blurry, low quality, distorted",
"duration": 5
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("kwaivgi/kling-v2.0-t2v-master", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"negative_prompt": "blurry, low quality, distorted",
"duration": 5
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"kwaivgi/kling-v2.0-t2v-master",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"aspect_ratio": "16:9",
"negative_prompt": "blurry, low quality, distorted",
"duration": 5
}
)
print(output["outputs"][0]) # → URL of the generated outputKling v2.0 T2v Master is a Kuaishou model for video generation, exposed as a REST API on WaveSpeedAI. Kling 2.0 Master is a Text-to-Video model featuring a Multi-Elements Editor, improved prompt understanding, and refined character motion. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/kwaivgi/kwaivgi-kling-v2.0-t2v-master.
Kling v2.0 T2v Master starts at $1.30 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `aspect_ratio`, `duration`, `negative_prompt`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/kwaivgi/kwaivgi-kling-v2.0-t2v-master.
Average end-to-end generation time on WaveSpeedAI is around 330 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (Kuaishou). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.