# Kling V1.6 Multi Image To Video > Transforms multiple images into smooth, high-quality 5-10 second videos with support for 16:9, 9:16, and 1:1 aspect ratios, 4K resolution, and advanced motion effects. ## Overview - **Model ID**: `kling-v1-6` - **Category**: video - **Provider**: klingai - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/5f99c0f4-7c36-4a4e-be79-85d56bb42380.png` ## 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/image-to-video` - **Method**: POST ### Parameters - **`init_image`** (required): Upload the reference image - Type: array - **`prompt`** (required): Text description of the video you want to generate - Type: textarea - Example: Enter prompt for video - **`duration`** (optional): Video Length, unit: s (seconds) Enum values:5,10 - Type: select (options: 5, 10) - **`aspect_ratio`** (optional): The aspect ratio of the generated video frame (width:height) Enum values:16:9, 9:16, 1:1 - Type: select (options: 16:9, 9:16, 1:1) ## Usage Examples ### cURL ```bash curl --request POST \ --url https://modelslab.com/api/v7/video-fusion/image-to-video \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "kling-v1-6", "prompt": "A model strolling with bag, chain, dress on a walkway. Cinematic, hyperrealistic, 8K.", "duration": "10", "aspect_ratio": "16:9" }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/video-fusion/image-to-video", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "kling-v1-6", "prompt": "A model strolling with bag, chain, dress on a walkway. Cinematic, hyperrealistic, 8K.", "duration": "10", "aspect_ratio": "16:9" } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/video-fusion/image-to-video", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "kling-v1-6", "prompt": "A model strolling with bag, chain, dress on a walkway. Cinematic, hyperrealistic, 8K.", "duration": "10", "aspect_ratio": "16:9" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Kling%20V1.6%20Multi%20Image%20To%20Video/kling-v1-6) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)