Skip to main content

Try Veo 3.1 Lite - Image to Video in the Workbench

Run this model interactively, tune parameters, and compare outputs.
Model ID: google-veo-3-1-lite Veo 3.1 Lite is Google’s image-to-video model designed for practical, high-quality animation from a single input image and text motion prompt. It supports controllable duration, aspect ratio, and resolution while balancing quality and cost for everyday creative and production workflows.

Example request

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.
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.
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-1-lite",
  "prompt": "<prompt>",
  "input_image": "https://hub.oxen.ai/api/repos/elau/assets/file/main/bloxy/bloxy_cropped_512x512.png"
}'

Fetch model details

The models endpoint returns the full model object, including its json_request_schema.
curl -H "Authorization: Bearer $OXEN_API_KEY" https://hub.oxen.ai/api/ai/models/google-veo-3-1-lite

Request parameters

Required parameters

FieldTypeDefaultDescription
promptstringText prompt describing how the input image should be animated.
input_imagestringURL of the input image to animate. Should be 720p or higher in 16:9 or 9:16. Format: uri.

Optional parameters

FieldTypeDefaultDescription
aspect_ratiostring"auto"Output video aspect ratio. One of: auto, 16:9, 9:16.
durationstring"8s"Duration of the generated video. One of: 4s, 6s, 8s.
resolutionstring"720p"Output video resolution. One of: 720p, 1080p.
negative_promptstringText describing what to avoid in the generated video.
seedintegerRandom seed for deterministic generation.
auto_fixbooleanfalseAutomatically rewrite prompts that fail policy or validation checks.