# Kling V2.5 Turbo Text To Video > Generate cinematic-quality 1080p videos with ultra-smooth motion, multi-character choreography, and precise prompt control in 5-10 second clips at 16:9, 9:16, or 1:1 aspect ratios. ## Overview - **Model ID**: `kling-v2-5-turbo-t2v` - **Category**: video - **Provider**: klingai - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/5ac01dfd-f345-4458-82a7-94378b5de5d5.webp` ## API Information This model can be used via our HTTP API. See the API documentation and usage examples below. ### Endpoint - **URL**: `https://modelslab.com/api/v7/video-fusion/text-to-video` - **Method**: POST ### Parameters - **`prompt`** (required): Text description of the video you want to generate - Type: textarea - Example: Enter prompt for video - **`duration`** (required): Video Length, unit: s (seconds) values: 5,10 The default is 5. - Type: select (options: 5s, 10s) - **`aspect_ratio`** (required): The aspect ratio of the generated video frame (width:height) Enum values:16:9, 9:16, 1:1 - Type: select (options: 1:1, 9:16, 16:9) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/video-fusion/text-to-video \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "kling-v2-5-turbo-t2v", "prompt": "Ultra-realistic cinematic scene of a powerful rocket launching from a space center at sunrise, with bright flames and thick smoke billowing from the engines, camera shaking slightly from the force, slow-motion takeoff, detailed metal reflections on the rocket body, glowing exhaust, dramatic lighting, 4K high detail, smooth motion, cinematic atmosphere", "duration": "5", "aspect_ratio": "1:1" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/video-fusion/text-to-video", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "kling-v2-5-turbo-t2v", "prompt": "Ultra-realistic cinematic scene of a powerful rocket launching from a space center at sunrise, with bright flames and thick smoke billowing from the engines, camera shaking slightly from the force, slow-motion takeoff, detailed metal reflections on the rocket body, glowing exhaust, dramatic lighting, 4K high detail, smooth motion, cinematic atmosphere", "duration": "5", "aspect_ratio": "1:1" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/video-fusion/text-to-video", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "kling-v2-5-turbo-t2v", "prompt": "Ultra-realistic cinematic scene of a powerful rocket launching from a space center at sunrise, with bright flames and thick smoke billowing from the engines, camera shaking slightly from the force, slow-motion takeoff, detailed metal reflections on the rocket body, glowing exhaust, dramatic lighting, 4K high detail, smooth motion, cinematic atmosphere", "duration": "5", "aspect_ratio": "1:1" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/kling-v2-5-turbo-t2v/kling-v2-5-turbo-t2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)