Use this file to discover all available pages before exploring further.
Try Veo 3.0 in the Workbench
Run this model interactively, tune parameters, and compare outputs.
Model ID:google-veo-3google/veo-3 is a video generation model designed for text- and image-conditioned video creation with native, synchronized audio.It excels in generating short, realistic clips with coherent motion, prompt-aligned cinematography, and integrated audio (dialogue, ambient sound, and effects), making it useful for tasks like concept visualization, social content, and pre-visualization for storytellers and filmmakers.Some other noteworthy use cases of google/veo-3 include creating marketing and educational videos from scripts or reference images, and producing character-driven scenes that maintain visual and audio consistency across shots.
Metric
Value
Parameter Count
Unknown
Mixture of Experts
Unknown
Context Length
Unknown
Multilingual
Yes
Quantized*
Unknown
*Quantization is specific to the inference provider and the model may be offered with different quantization levels by other providers.
Use the Workbench as a request builder: configure parameters for this model in the UI, then open the API tab to copy the exact cURL or Python call.
Sync
Async
Async with SSE
This blocks until the video is ready (typically 5-15 minutes). Prefer Async or Async with SSE for anything beyond quick experimentation.See the video generation reference for more details.
Minimal
Basic parameters
All parameters
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OXEN_API_KEY" \ -d '{ "model": "google-veo-3", "prompt": "A dog digging on the beach"}'
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OXEN_API_KEY" \ -d '{ "model": "google-veo-3", "input_image": "https://hub.oxen.ai/api/repos/elau/assets/file/main/bloxy/bloxy_cropped_512x512.png", "prompt": "A dog digging on the beach"}'
curl -X POST https://hub.oxen.ai/api/ai/videos/generate \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OXEN_API_KEY" \ -d '{ "model": "google-veo-3", "input_image": "https://hub.oxen.ai/api/repos/elau/assets/file/main/bloxy/bloxy_cropped_512x512.png", "prompt": "A dog digging on the beach", "aspect_ratio": "16:9", "duration": 8, "resolution": "1080p", "generate_audio": false}'