← All Models
Veo 3.1
Google's video generation model via Gemini. High-quality video from text prompts.
Specifications
| Provider | |
| Category | Video |
Quick Start
curl -X POST https://query.genx.sh/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "veo-3.1",
"params": {
"prompt": "A timelapse of clouds moving over a mountain range",
"duration": 8,
"aspect_ratio": "16:9"
}
}'
Example Request Body
// POST /api/v1/generate
{
"model": "veo-3.1",
"params": {
"prompt": "A timelapse of clouds moving over a mountain range",
"duration": 8,
"aspect_ratio": "16:9"
}
}