Video models
Gemini Omni
On this page
Gemini Omni — high-quality AI video generation.
| modelId | gemini-omni-video |
| Modality | video |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | Endpoint | Description |
|---|---|---|
| Text to video | POST /api/v1/generate | Base generation from a text prompt. |
| Image to video | POST /api/v1/generate | Condition on a reference image — upload it via /api/v1/files/upload and pass the URL. |
| Poll task | GET /api/v1/task/{id}?model=gemini-omni-video | Retrieve state and result URLs. |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | textarea | required | Enter your text here... |
| image_urls | image | optional | Drag and drop or click to upload your image |
| audio_ids | idList | optional | — |
| video_list | videoTrim | optional | — |
| character_ids | idList | optional | — |
| duration | select | optional | 4, 6, 8, 10 |
| aspect_ratio | select | optional | 16:9, 9:16 |
| resolution | select | optional | 720p, 1080p, 4k |
| seed | number | optional | Enter number... |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"gemini-omni-video","input":{"prompt":"A paper crane comes alive on a desk and flies out an open window into the sunset; a soft piano note plays on each wingbeat.","audio_ids":"…","video_list":"…","character_ids":"…","duration":"8","aspect_ratio":"16:9","resolution":"720p","seed":0}}'