# Hailuo 2.3 Text To Video > Generate cinematic 6-10 second videos at 768p or 1080p with realistic motion, micro-expressions, and high-fidelity stylization for e-commerce, social, and storytelling. ## Overview - **Model ID**: `Hailuo-2.3-t2v` - **Category**: video - **Provider**: minimax - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/567c802c-05e1-45f9-8278-9ee7c35388b6.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-2.3-t2v", "prompt": "A sunset aerial shot of a lone rider galloping across a snow-covered plain, swirling snow kicked by the hooves, warm orange backlight casting long shadows, steady tracking shot from behind, cinematic photorealism with film grain." }' ``` ### 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-2.3-t2v", "prompt": "A sunset aerial shot of a lone rider galloping across a snow-covered plain, swirling snow kicked by the hooves, warm orange backlight casting long shadows, steady tracking shot from behind, cinematic photorealism with film grain." } ) 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-2.3-t2v", "prompt": "A sunset aerial shot of a lone rider galloping across a snow-covered plain, swirling snow kicked by the hooves, warm orange backlight casting long shadows, steady tracking shot from behind, cinematic photorealism with film grain." }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/Hailuo-2.3-text-to-video/Hailuo-2.3-t2v) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)