# Hailuo 2.3 Image To Video > Delivers hyper-realistic 1080p videos from images in under 2 minutes with 2.5× faster rendering, capturing precise micro-expressions, dynamic lighting, and smooth motion for professional-grade content. ## Overview - **Model ID**: `Hailuo-2.3-i2v` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/9fe4b53a-0363-4c1c-94ab-b3153fa8b97b.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/image-to-video` - **Method**: POST ### Parameters - **`init_image`** (required): Upload the reference image - Type: file - **`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: 6,10 The default is 6. - Type: select (options: 6s, 10s) ## 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": "Hailuo-2.3-i2v", "init_image": "https://assets.modelslab.com/generations/748c662c-7438-4c47-9540-c8d26c0e3217.jpg", "prompt": "Add drifting fog and torchlight flicker, a slow forward camera move toward the castle gate, moody ambiance and subtle sound of wind.", "duration": "6" }' ``` ### 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": "Hailuo-2.3-i2v", "init_image": "https://assets.modelslab.com/generations/748c662c-7438-4c47-9540-c8d26c0e3217.jpg", "prompt": "Add drifting fog and torchlight flicker, a slow forward camera move toward the castle gate, moody ambiance and subtle sound of wind.", "duration": "6" } ) 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": "Hailuo-2.3-i2v", "init_image": "https://assets.modelslab.com/generations/748c662c-7438-4c47-9540-c8d26c0e3217.jpg", "prompt": "Add drifting fog and torchlight flicker, a slow forward camera move toward the castle gate, moody ambiance and subtle sound of wind.", "duration": "6" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Hailuo-2.3-image-to-video/Hailuo-2.3-i2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)