Skip to main content
POST
/
generation
/
google
/
veo-3.1
Veo 3.1
curl --request POST \
  --url https://open.ppt.video/api/v1/generation/google/veo-3.1 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "prompt": "<string>"
}
'
{
  "id": "<string>",
  "status": "starting"
}
Veo video generation model

Authorizations

Authorization
string
header
required

API Key for API endpoints

Body

application/json
prompt
string
required

Text prompt for video generation

webhook
string<uri>

Webhook URL for receiving updates

seed
integer | null

Random seed. Omit for random generations

Required range: -9007199254740991 <= x <= 9007199254740991
image
string<uri>

Input image to start generating from. Ideal images are 16:9 or 9:16 and 1280x720 or 720x1280, depending on the aspect ratio you choose.

duration
default:8

Video duration in seconds

last_frame
string<uri>

Ending image for interpolation. When provided with an input image, creates a transition between the two images.

resolution
enum<string>
default:1080p

Resolution of the generated video

Available options:
720p,
1080p
aspect_ratio
enum<string>
default:16:9

Video aspect ratio

Available options:
16:9,
9:16
generate_audio
boolean
default:true

Generate audio with the video

negative_prompt
string | null

Description of what to exclude from the generated video

reference_images
string<uri>[]

1 to 3 reference images for subject-consistent generation (reference-to-video, or R2V). Reference images only work with 16:9 aspect ratio and 8-second duration. Last frame is ignored if reference images are provided.

Response

Generation status

id
string
required

Generation id.

status
enum<string>
required

Generation status

Available options:
starting,
processing,
succeeded,
failed,
canceled