Veo Video Generation
OpenAI Format
Veo Video Generation
Use POST /v1/videos to call the Veo model and submit asynchronous video tasks.
POST
Veo Video Generation
Veo Video Generation
OpenAI-format entry point. If you need to use the unified videoPOST /v1/video/create, please see Create Video.
The Veo series is currently submitted through POST /v1/videos, with JSON submission as the primary method.
- The routing entry point is
POST /v1/videos. - The current models are only
veo_3_1andveo_3_1-fast. - Currently,
sizewill be converted and submitted together withmetadata.output_config.resolutionandaspect_ratio. - Reference images are still expressed by
input_reference, but in JSON requests they are usually represented as a URL, base64, or Data URL.
Current Models
veo_3_1veo_3_1-fast
Method and Path
Request Example
Response Example
Authentication
Body
Model name. Currently only
veo_3_1 and veo_3_1-fast are organized.Prompt.
Size string. Common values currently include
720x1280 or 1280x720, which are used to derive Veo’s resolution and aspect ratio.Target duration. Currently submitted through
seconds; the gateway also supports duration and metadata.durationSeconds.Reference image input. JSON requests can currently use a URL, base64, or data URI; the Veo adapter layer also supports multipart file uploads.
Extended configuration. The Veo pipeline will continue parsing
metadata into upstream Veo fields such as DurationSeconds, AspectRatio, and Resolution.This is the Apifox field reference you provided, but based on the current main repository pipeline, it is not an explicit top-level field in the generic Veo DTO. If you want to express clarity or resolution,
size and metadata are currently recommended instead.Current Rules
| Item | Rule |
|---|---|
| Request format | JSON |
| Reference image format | Supports URL, base64, and data URI, and also supports multipart files |
| Reference-to-video mode | The aspect ratio will be forcibly constrained to 16:9 |
| Parameter mapping | size will be further mapped to Veo-required resolution and aspectRatio |