Gemini Omni 1.1 Flash API

google/gemini-omni-1.1-flash
Google's multimodal video model, covering text-to-video, image-to-video, reference-to-video, and video editing in one API.
Output
$11.7 / 1M tokens
Released
Aug 27, 2026

How to use Gemini Omni 1.1 Flash API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to google/gemini-omni-1.1-flash.
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-1.1-flash",
      "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-1.1-flash",
    "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-1.1-flash","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.

Gemini Omni 1.1 Flash API Pricing

TypePrice
Output
$11.7 / 1M tokens

Billed per second of generated video at $0.131768/sec, regardless of output resolution.

Gemini Omni 1.1 Flash vs other models

ModelInputOutputContextBest for
$11.7 / 1M tokens
Video generation
$0.26 / sec (variable)
Video generation
$0.13 / sec (variable)
Video generation
$0.09243–$1.014 / sec (by resolution)
Cinematic video + native audio

Frequently asked questions

Gemini Omni 1.1 Flash takes image, text, video as input and returns video.

Gemini Omni 1.1 Flash became available on August 27, 2026.

Gemini Omni 1.1 Flash is priced at $11.7 / 1M tokens.

Gemini Omni 1.1 Flash is billed per generation — a fixed charge per output rather than by prompt length.

Yes, Gemini Omni 1.1 Flash accepts image input as well as a text prompt.

Gemini Omni 1.1 Flash was built by Google.

Send a request to https://api.aimlapi.com/v2/video/generations with google/gemini-omni-1.1-flash as the model id.

Yes. Gemini Omni 1.1 Flash is served through AI/ML API, so the same key and endpoint format used for other models applies.

Start building with Gemini Omni 1.1 Flash

Get API Key
1000+ models, one API.