Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params multipart/form-dataRequired
Request Code Samples
curl --location --request POST '/v1/videos' \
--header 'Accept: application/json' \
--header 'X-Forwarded-Host: localhost:5173' \
--header 'Authorization: Bearer <token>' \
--form 'model="veo_3_1"' \
--form 'prompt="Let the cow happily jump the driving test (Part 3)"' \
--form 'seconds="8"' \
--form 'input_reference=@"C:\\Users\\Administrator\\Desktop\\Image1.png"' \
--form 'size="16x9"' \
--form 'watermark="false"'
Responses
application/json {
"id": "video_55cb73b3-60af-40c8-95fd-eae8fd758ade",
"object": "video",
"model": "veo_3_1",
"status": "queued",
"progress": 0,
"created_at": 1762336916,
"seconds": "8",
"size": "16x9"
}
Modified at 2025-12-01 04:30:46