import requests, time
headers = {"Authorization": "Bearer " + AIMLAPI_KEY}
job = requests.post(
"https://api.aimlapi.com/v2/video/generations",
headers=headers,
json={
"model": "google/gemini-omni-flash-preview",
"prompt": "A serene timelapse of clouds over a mountain range"
},
).json()
gid = job["id"]
while True:
res = requests.get(f"https://api.aimlapi.com/v2/video/generations?generation_id={gid}", headers=headers).json()
if res.get("status") in ("completed", "error"):
break
time.sleep(5)
print(res["video"]["url"])
const headers = {
Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
"Content-Type": "application/json",
};
const job = await (await fetch("https://api.aimlapi.com/v2/video/generations", {
method: "POST",
headers,
body: JSON.stringify({
"model": "google/gemini-omni-flash-preview",
"prompt": "A serene timelapse of clouds over a mountain range"
}),
})).json();
let res;
do {
await new Promise((r) => setTimeout(r, 5000));
res = await (await fetch(`https://api.aimlapi.com/v2/video/generations?generation_id=${job.id}`, { headers })).json();
} while (!["completed", "error"].includes(res.status));
console.log(res.video.url);
# submit the generation — the response contains the job "id"
curl -X POST https://api.aimlapi.com/v2/video/generations \
-H "Authorization: Bearer $AIMLAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"google/gemini-omni-flash-preview","prompt":"A serene timelapse of clouds over a mountain range"}'
# then poll until status is "completed" — video.url holds the result
curl "https://api.aimlapi.com/v2/video/generations?generation_id={id}" -H "Authorization: Bearer $AIMLAPI_KEY"
OpenAI-compatible — swap the base URL and it works with your existing SDK.
| Type | Price |
|---|---|
| Input | |
| Output | |
Input image tokens $1.95/1M · generated video tokens $22.75/1M (incidental text-response tokens, if any, $11.7/1M).
| Model | Input | Output | Context | Best for |
|---|---|---|---|---|
Gemini Omni This page | Video generation |
Gemini Omni takes image, text, video as input and returns video.
Gemini Omni is priced at input $1.95 / 1M tokens, output $22.75 / 1M tokens.
Gemini Omni is billed per token, charged separately for input and output.
Yes, Gemini Omni accepts image input as well as a text prompt.
Gemini Omni was built by Google.
Use google/gemini-omni-flash-preview as the model id on AI/ML API.
Yes. Gemini Omni is served through AI/ML API, so the same key and endpoint format used for other models applies.
Yes, Gemini Omni includes audio generation as part of its video generation capabilities.
Yes, Gemini Omni supports reference-to-video generation in addition to text-to-video and image-to-video.