# Hailuo 02 Text To Video > Generate high-quality AI videos up to 10 seconds at 1080p, 24-30 FPS with advanced physics, motion control, and multilingual support. ## Overview - **Model ID**: `Hailuo-02-t2v` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/f45a761f-b956-4b06-9ffc-0771f87ba481.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/text-to-video` - **Method**: POST ### Parameters - **`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/text-to-video \ --header "Content-Type: application/json" \ --data '{ "key": "YOUR_API_KEY", "model_id": "Hailuo-02-t2v", "prompt": "Cinematic low-angle tracking shot of a futuristic supercar speeding through a wet German highway at night, water splashes reflecting neon signs, smooth camera chase, motion blur and lens flare effects, dynamic tone." }' ``` ### Python ```python import requests response = requests.post( "https://modelslab.com/api/v7/video-fusion/text-to-video", headers={ "Content-Type": "application/json" }, json={ "key": "YOUR_API_KEY", "model_id": "Hailuo-02-t2v", "prompt": "Cinematic low-angle tracking shot of a futuristic supercar speeding through a wet German highway at night, water splashes reflecting neon signs, smooth camera chase, motion blur and lens flare effects, dynamic tone." } ) print(response.json()) ``` ### JavaScript ```javascript fetch("https://modelslab.com/api/v7/video-fusion/text-to-video", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "key": "YOUR_API_KEY", "model_id": "Hailuo-02-t2v", "prompt": "Cinematic low-angle tracking shot of a futuristic supercar speeding through a wet German highway at night, water splashes reflecting neon signs, smooth camera chase, motion blur and lens flare effects, dynamic tone." }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Hailuo-0.2-text-to-video/Hailuo-02-t2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)