# Veo 3 Fast > Generates high-fidelity 8-second videos at 1080p and 24fps with native audio including dialogue, sound effects, and ambient noise, optimized for fast, cost-effective production. ## Overview - **Model ID**: `veo-3.0-fast-generate` - **Category**: video - **Provider**: google - **Status**: model_ready - **Screenshot**: `https://assets.modelslab.com/generations/042d8e4a-f44a-497d-9474-12e2f1711edb.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): - Type: textarea - Example: Enter prompt for video - **`aspect_ratio`** (required): The aspect ratio of the generated video — 16:9 is wide - Type: select (options: 16:9) - **`duration`** (optional): Veo 3 accept 8 sec duration - Type: select (options: 8s) - **`generate_audio`** (optional): Determines whether audio should be generated for the video. Default is true. - Type: toggle - **`negative_prompt`** (optional): A negative prompt that specifies what should be avoided during video generation. - Type: textarea - **`enhance_prompt`** (optional): Engance your given prompt. Default true - Type: toggle ## 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": "veo-3.0-fast-generate", "prompt": "High-octane Formula 1 race at blistering speed — two rival F1 drivers battle wheel-to-wheel on a sunlit track, overtaking each other with razor-sharp precision. Through their helmet radios, they shout and scold each other mid-race, voices crackling over the roar of 1000-horsepower engines. The camera whips between ultra-fast tracking shots, slow-motion tire sparks, and dramatic cockpit close-ups showing clenched jaws and sweat. Crowds erupt in cheers, flags waving, as the cars dart through corners with cinematic motion blur, lens flares, and dynamic aerial sweeps capturing every heart-pounding moment.", "aspect_ratio": "16:9", "duration": "8", "generate_audio": false, "negative_prompt": "example_negative_prompt", "enhance_prompt": false }' ``` ### 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": "veo-3.0-fast-generate", "prompt": "High-octane Formula 1 race at blistering speed — two rival F1 drivers battle wheel-to-wheel on a sunlit track, overtaking each other with razor-sharp precision. Through their helmet radios, they shout and scold each other mid-race, voices crackling over the roar of 1000-horsepower engines. The camera whips between ultra-fast tracking shots, slow-motion tire sparks, and dramatic cockpit close-ups showing clenched jaws and sweat. Crowds erupt in cheers, flags waving, as the cars dart through corners with cinematic motion blur, lens flares, and dynamic aerial sweeps capturing every heart-pounding moment.", "aspect_ratio": "16:9", "duration": "8", "generate_audio": False, "negative_prompt": "example_negative_prompt", "enhance_prompt": False } ) 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": "veo-3.0-fast-generate", "prompt": "High-octane Formula 1 race at blistering speed — two rival F1 drivers battle wheel-to-wheel on a sunlit track, overtaking each other with razor-sharp precision. Through their helmet radios, they shout and scold each other mid-race, voices crackling over the roar of 1000-horsepower engines. The camera whips between ultra-fast tracking shots, slow-motion tire sparks, and dramatic cockpit close-ups showing clenched jaws and sweat. Crowds erupt in cheers, flags waving, as the cars dart through corners with cinematic motion blur, lens flares, and dynamic aerial sweeps capturing every heart-pounding moment.", "aspect_ratio": "16:9", "duration": "8", "generate_audio": false, "negative_prompt": "example_negative_prompt", "enhance_prompt": false }) }) .then(response => response.json()) .then(data => console.log(data)); ``` ## Links - [Model Playground](https://modelslab.com/models/veo3-fast/veo-3.0-fast-generate) - [API Documentation](https://docs.modelslab.com) - [ModelsLab Platform](https://modelslab.com)