Skip to content
Google logo

Veo 3

Text-to-VideoGoogleProxied

Google's video generation model capable of producing high-quality videos with optional audio from text prompts.

Model Info
Terms and Licenselink
More informationlink
PricingView pricing in the Cloudflare dashboard

Usage

TypeScript
const response = await env.AI.run(
'google/veo-3',
{
prompt: 'A golden retriever running through a field of sunflowers on a sunny day',
aspect_ratio: '16:9',
duration: '6s',
generate_audio: true,
resolution: '720p',
},
)
console.log(response)

Examples

Cinematic Scene — Widescreen cinematic video in 1080p
TypeScript
const response = await env.AI.run(
'google/veo-3',
{
prompt:
'A dramatic drone shot flying through misty mountain peaks at sunrise, with clouds rolling through valleys below',
aspect_ratio: '16:9',
duration: '8s',
generate_audio: true,
resolution: '1080p',
},
)
console.log(response)
Vertical Video — Portrait orientation for social media
TypeScript
const response = await env.AI.run(
'google/veo-3',
{
prompt: 'A barista expertly pouring latte art, close-up shot with shallow depth of field',
aspect_ratio: '9:16',
duration: '6s',
generate_audio: true,
resolution: '720p',
},
)
console.log(response)
Short Format — Short video for social media posts
TypeScript
const response = await env.AI.run(
'google/veo-3',
{
prompt: 'A timelapse of a flower blooming, soft natural lighting',
aspect_ratio: '16:9',
duration: '4s',
generate_audio: true,
resolution: '720p',
},
)
console.log(response)
Silent Video — Video without audio generation
TypeScript
const response = await env.AI.run(
'google/veo-3',
{
prompt: 'Abstract flowing liquid metal morphing into geometric shapes',
aspect_ratio: '16:9',
duration: '6s',
generate_audio: false,
resolution: '720p',
},
)
console.log(response)

Parameters

aspect_ratio
stringrequireddefault: 16:9enum: 16:9, 9:16, 1:1Video aspect ratio
duration
stringrequireddefault: 6senum: 4s, 6s, 8sVideo duration
generate_audio
booleanrequireddefault: trueWhether to generate audio with the video
image_input
stringBase64-encoded reference image for i2v
prompt
stringrequiredText prompt describing the video to generate
resolution
stringrequireddefault: 720penum: 720p, 1080pVideo resolution

API Schemas (Raw)

Input
Output