# Hailuo 02 Start/End Frame Image To Video > Generate cinematic 1080p videos from images with precise keyframe control, realistic physics, and 10-second clips at 24-30 FPS—perfect for filmmaking and professional content creation. ## Overview - **Model ID**: `Hailuo-02-start-end-frame ` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/7f8abe1a-01b2-4f8e-ab6f-edac1c34c370.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: array - **`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-start-end-frame ", "prompt": "Animate the seasonal transformation — snow melting, colors emerging, flowers blooming, and the light warming up as winter fades into spring." }' ``` ### 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-start-end-frame ", "prompt": "Animate the seasonal transformation — snow melting, colors emerging, flowers blooming, and the light warming up as winter fades into spring." } ) 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-start-end-frame ", "prompt": "Animate the seasonal transformation — snow melting, colors emerging, flowers blooming, and the light warming up as winter fades into spring." }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/minimax-hailuo0.2-start-end-frame-image-to-video/Hailuo-02-start-end-frame%20) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)