# Hailuo 2.3 Fast Image To Video > Generate smooth, realistic 1080p videos from a single image in under 2 minutes with advanced motion capture, facial micro-expressions, and anime-style enhancements optimized for fast, cost-effective production. ## Overview - **Model ID**: `Hailuo-2.3-Fast-i2v` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/e7b31183-59f6-4e12-87dc-1b7eaa3f0be1.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-Fast-i2v", "init_image": "https://assets.modelslab.com/generations/24815968-f3ae-45c2-8b48-64a7f36ad69f.jpg", "prompt": "Animate stars moving across the sky, soft glow around her hair, waves shimmering, and camera tilting up toward the heavens in slow motion.", "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-Fast-i2v", "init_image": "https://assets.modelslab.com/generations/24815968-f3ae-45c2-8b48-64a7f36ad69f.jpg", "prompt": "Animate stars moving across the sky, soft glow around her hair, waves shimmering, and camera tilting up toward the heavens in slow motion.", "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-Fast-i2v", "init_image": "https://assets.modelslab.com/generations/24815968-f3ae-45c2-8b48-64a7f36ad69f.jpg", "prompt": "Animate stars moving across the sky, soft glow around her hair, waves shimmering, and camera tilting up toward the heavens in slow motion.", "duration": "6" }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/minimax-hailuo2.3-fast-image-to-video/Hailuo-2.3-Fast-i2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)