# Hailuo 02 Image To Video > Generates up to 10-second cinematic videos from still images in native 1080p at 24-30 FPS, featuring advanced physics simulation, facial tracking, and precise camera control for professional visual storytelling. ## Overview - **Model ID**: `Hailuo-02-i2v` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/89f858fe-f734-4c69-a6e0-e4eff44a6417.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 ## 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-02-i2v", "init_image": "https://assets.modelslab.com/generations/969cc0c4-2f18-4bd8-9bd2-4740f7e7ccab.jpg", "prompt": "Animate soft motion of fireflies, water rippling gently, camera gliding forward through the forest as lights pulse around." }' ``` ### 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-02-i2v", "init_image": "https://assets.modelslab.com/generations/969cc0c4-2f18-4bd8-9bd2-4740f7e7ccab.jpg", "prompt": "Animate soft motion of fireflies, water rippling gently, camera gliding forward through the forest as lights pulse around." } ) 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-02-i2v", "init_image": "https://assets.modelslab.com/generations/969cc0c4-2f18-4bd8-9bd2-4740f7e7ccab.jpg", "prompt": "Animate soft motion of fireflies, water rippling gently, camera gliding forward through the forest as lights pulse around." }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/minimax-hailuo-0.2-image-to-video/Hailuo-02-i2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)