# Veo 3.1 Fast > Google's fast video generation model producing 720p/1080p video up to 8 seconds with optional native audio including synchronized sound effects, ambient noise, and dialogue with lip-sync ## Quick Reference - Model ID: veo-3.1-fast - Creator: Google - Status: active - Family: veo - Base URL: https://api.lumenfall.ai/v1 ## Specifications - Max Video Duration: 8 seconds - Input Modalities: text, image - Output Modalities: video, audio - Supported Modes: Text to Video, Image to Video ## API Parameters The compiled parameter schema for this model is available via the API: `GET /v1/models/veo-3.1-fast?schema=true`. ### Core Parameters - `prompt` (string) — REQUIRED: Text prompt for video generation. Modes: Text to Video, Image to Video - `negative_prompt` (string): Negative prompt to guide generation away from undesired content. Modes: Text to Video, Image to Video - `duration` (number): Video duration in seconds. Modes: Text to Video, Image to Video ### Size & Layout - `size` (string): Video dimensions as WxH pixels (e.g. "1920x1080") or aspect ratio (e.g. "16:9"). Values: 1365x768, 768x1365. Modes: Text to Video, Image to Video - `aspect_ratio` (string): Aspect ratio of the output video (e.g. "16:9", "1:1"). Values: 9:16, 16:9. Modes: Text to Video, Image to Video - `resolution` (string): Output resolution tier (e.g. "1K", "4K"). Values: 1K. Modes: Text to Video, Image to Video ### Media Inputs - `input_reference` (array) — REQUIRED: Input image(s) to animate into video. Modes: Image to Video ### Audio - `generate_audio` (boolean): Whether to generate audio alongside video. Modes: Text to Video, Image to Video ### Output & Format - `n` (integer): Number of videos to generate. Default: 1. Modes: Text to Video, Image to Video ## Model Identifiers - Primary Slug: veo-3.1-fast - Aliases: veo-3-1-fast, veo-3.1-fast-generate-001 ## Dates - Released: October 2025 ## Tags video-generation, text-to-video, image-to-video, audio-generation ## Available Providers ### Google Gemini API - Config Key: gemini/veo-3.1-fast - Provider Model ID: veo-3.1-fast-generate-preview - Pricing: $0.100/second, $0.200/second - Source: https://ai.google.dev/gemini-api/docs/video ## Arena Benchmarks ### The Soul Gauntlet - Elo: 1134 - Record: 2W / 3L / 1T (6 battles) - Rank: #3 of 6 ### The Rubik's Gauntlet - Elo: 859 - Record: 0W / 4L / 3T (7 battles) - Rank: #6 of 6 ## Image Gallery 3 images available for this model. Browse all at https://lumenfall.ai/models/google/veo-3.1-fast/gallery ### Arena Video Results - : Elo . Prompt: "A cinematic, 5-second wide shot of a futuristic neon-lit greenhouse at night. In the foreground, ..." - The Soul Gauntlet: Elo 1134. Prompt: "Extreme cinematic close-up of a beautiful young woman experiencing deep, raw emotion. Her express..." - The Rubik's Gauntlet: Elo 859. Prompt: "Hyper-realistic cinematic close-up of a professional speedcuber solving a 3x3 Rubik's Cube at wor..." ## Example Prompt The following prompt was used to generate an example video in our playground: A cinematic, 5-second wide shot of a futuristic neon-lit greenhouse at night. In the foreground, glowing bioluminescent flowers pulse gently with light. A silver robotic arm enters the frame to carefully prune a leaf with fluid, precise motion. In the soft-focus background, near a decorative water fountain, a capybara sits perfectly still, wearing a tiny pair of glowing headphones. The words "Veo 3.1 Fast" are subtly etched in neon on a glass panel. High-quality, 4k, peaceful atmosphere. ## Code Examples ### Text to Video (/v1/videos/generations) — Async #### cURL # Step 1: Submit video generation request VIDEO_ID=$(curl -s -X POST \ https://api.lumenfall.ai/v1/videos \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "veo-3.1-fast", "prompt": "", "size": "1024x1024" }' | jq -r '.id') echo "Video ID: $VIDEO_ID" # Step 2: Poll for completion while true; do RESULT=$(curl -s \ https://api.lumenfall.ai/v1/videos/$VIDEO_ID \ -H "Authorization: Bearer $LUMENFALL_API_KEY") STATUS=$(echo $RESULT | jq -r '.status') echo "Status: $STATUS" if [ "$STATUS" = "completed" ]; then echo $RESULT | jq -r '.output.url' break elif [ "$STATUS" = "failed" ]; then echo $RESULT | jq -r '.error.message' break fi sleep 5 done #### JavaScript const BASE_URL = 'https://api.lumenfall.ai/v1'; const API_KEY = 'YOUR_API_KEY'; // Step 1: Submit video generation request const submitRes = await fetch(`${BASE_URL}/videos`, { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ model: 'veo-3.1-fast', prompt: '', size: '1024x1024' }) }); const { id: videoId } = await submitRes.json(); console.log('Video ID:', videoId); // Step 2: Poll for completion while (true) { const pollRes = await fetch(`${BASE_URL}/videos/${videoId}`, { headers: { 'Authorization': `Bearer ${API_KEY}` } }); const result = await pollRes.json(); if (result.status === 'completed') { console.log('Video URL:', result.output.url); break; } else if (result.status === 'failed') { console.error('Error:', result.error.message); break; } await new Promise(r => setTimeout(r, 5000)); } #### Python import requests import time BASE_URL = "https://api.lumenfall.ai/v1" API_KEY = "YOUR_API_KEY" HEADERS = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json" } # Step 1: Submit video generation request response = requests.post( f"{BASE_URL}/videos", headers=HEADERS, json={ "model": "veo-3.1-fast", "prompt": "", "size": "1024x1024" } ) video_id = response.json()["id"] print(f"Video ID: {video_id}") # Step 2: Poll for completion while True: result = requests.get( f"{BASE_URL}/videos/{video_id}", headers=HEADERS ).json() if result["status"] == "completed": print(f"Video URL: {result['output']['url']}") break elif result["status"] == "failed": print(f"Error: {result['error']['message']}") break time.sleep(5) ### Image to Video (/v1/videos/generations) — Async #### cURL # Step 1: Submit image-to-video request VIDEO_ID=$(curl -s -X POST \ https://api.lumenfall.ai/v1/videos \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "veo-3.1-fast", "prompt": "", "image_url": "https://example.com/start-frame.jpg", "duration": "10", "aspect_ratio": "16:9" }' | jq -r '.id') echo "Video ID: $VIDEO_ID" # Step 2: Poll for completion while true; do RESULT=$(curl -s \ https://api.lumenfall.ai/v1/videos/$VIDEO_ID \ -H "Authorization: Bearer $LUMENFALL_API_KEY") STATUS=$(echo $RESULT | jq -r '.status') echo "Status: $STATUS" if [ "$STATUS" = "completed" ]; then echo $RESULT | jq -r '.output.url' break elif [ "$STATUS" = "failed" ]; then echo $RESULT | jq -r '.error.message' break fi sleep 5 done #### JavaScript const BASE_URL = 'https://api.lumenfall.ai/v1'; const API_KEY = 'YOUR_API_KEY'; // Step 1: Submit image-to-video request const submitRes = await fetch(`${BASE_URL}/videos`, { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ model: 'veo-3.1-fast', prompt: '', image_url: 'https://example.com/start-frame.jpg', duration: '10', aspect_ratio: '16:9' }) }); const { id: videoId } = await submitRes.json(); console.log('Video ID:', videoId); // Step 2: Poll for completion while (true) { const pollRes = await fetch(`${BASE_URL}/videos/${videoId}`, { headers: { 'Authorization': `Bearer ${API_KEY}` } }); const result = await pollRes.json(); if (result.status === 'completed') { console.log('Video URL:', result.output.url); break; } else if (result.status === 'failed') { console.error('Error:', result.error.message); break; } await new Promise(r => setTimeout(r, 5000)); } #### Python import requests import time BASE_URL = "https://api.lumenfall.ai/v1" API_KEY = "YOUR_API_KEY" HEADERS = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json" } # Step 1: Submit image-to-video request response = requests.post( f"{BASE_URL}/videos", headers=HEADERS, json={ "model": "veo-3.1-fast", "prompt": "", "image_url": "https://example.com/start-frame.jpg", "duration": "10", "aspect_ratio": "16:9" } ) video_id = response.json()["id"] print(f"Video ID: {video_id}") # Step 2: Poll for completion while True: result = requests.get( f"{BASE_URL}/videos/{video_id}", headers=HEADERS ).json() if result["status"] == "completed": print(f"Video URL: {result['output']['url']}") break elif result["status"] == "failed": print(f"Error: {result['error']['message']}") break time.sleep(5) ## Frequently Asked Questions ### How much does Veo 3.1 Fast cost? Veo 3.1 Fast starts at $0.1 per video through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use Veo 3.1 Fast via API? You can use Veo 3.1 Fast through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "veo-3.1-fast". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Veo 3.1 Fast? Veo 3.1 Fast is available through Google Gemini API on Lumenfall. Lumenfall automatically routes requests to the best available provider. ## Links - Model Page: https://lumenfall.ai/models/google/veo-3.1-fast - About: https://lumenfall.ai/models/google/veo-3.1-fast/about - Providers, Pricing & Performance: https://lumenfall.ai/models/google/veo-3.1-fast/providers - API Reference: https://lumenfall.ai/models/google/veo-3.1-fast/api - Benchmarks: https://lumenfall.ai/models/google/veo-3.1-fast/benchmarks - Use Cases: https://lumenfall.ai/models/google/veo-3.1-fast/use-cases - Gallery: https://lumenfall.ai/models/google/veo-3.1-fast/gallery - Playground: https://lumenfall.ai/playground?model=veo-3.1-fast - API Documentation: https://docs.lumenfall.ai