Gemini Omni Flash Preview

Gemini Omni Flash Preview is an interactive multimodal model that processes text and media inputs through a unified interface and generates videos lasting 3 to 10 seconds. It is suited to creative prototyping, advertising assets, social media production, and automated video workflows that need repeatable API access. Use the playground below to test representative prompts, input media, duration, resolution, aspect ratio, and other controls that are available for this model. Before production rollout, compare motion quality, subject consistency, processing time, failure handling, and estimated cost with your actual workload. The controls shown on this page describe the currently supported integration options.

A coastal researcher observing wind, waves, birds, camera gear, and audio equipment
Model ID
gemini-omni-flash-preview
Provider
Google
API endpoint
/v1beta/interactions
Pricing
0.11
Last updated
2026-08-13

Capabilities

  • Video generation through the current public task endpoint
  • Image, reference, duration, or resolution controls when exposed by the live schema
  • Current parameters including prompt, task, duration

Limitations

  • Capabilities and parameter ranges can change; pin and validate the parameter set used in production
  • Do not assume support for parameters absent from the live request schema
  • Asynchronous jobs require explicit polling, failure, timeout, and safety-status handling

Use cases

  • Product prototypes and automated content workflows
  • Batch media generation and programmatic creative tooling
  • Multi-model applications that need unified authentication, billing, and usage records

Pricing and billing examples

  • Video output | 0.11 | output_video_seconds

Request parameters

ParameterTypeRequiredDefaultOptions
modelstringYes
prompttextareaYes
taskselectYestext_to_videotext_to_video, image_to_video, reference_to_video
durationintegerYes5

API examples

cURL

curl -X POST 'https://api.uniall.ai/v1beta/interactions' \
  -H 'Authorization: Bearer $UNIALL_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}'

Python

import json
import requests

payload = json.loads(r'''{"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}''')
response = requests.post(
    "https://api.uniall.ai/v1beta/interactions",
    headers={"Authorization": "Bearer " + UNIALL_API_KEY},
    json=payload,
)
response.raise_for_status()
result = response.json()

JavaScript

const response = await fetch("https://api.uniall.ai/v1beta/interactions", {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.UNIALL_API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"duration":5,"model":"gemini-omni-flash-preview","prompt":"Describe the output you want","task":"text_to_video"}),
});

if (!response.ok) throw new Error(`HTTP ${response.status}`);
const result = await response.json();

Frequently asked questions

What API endpoint does gemini-omni-flash-preview use?

The endpoint is resolved from the current model capabilities and request schema and shown on this page.

How is gemini-omni-flash-preview priced?

The pricing section reads the current structured billing configuration, so editorial text does not need a rewrite after a price change.

Can I use Python?

Yes. The example uses the current endpoint and exact model identifier.

Are JavaScript and cURL examples included?

Yes. All examples share the same live request structure.

Which resolution, duration, or reference-image controls are supported?

Supported controls come from the current request schema. Do not assume fields that are not listed.

What should I validate before production use?

Validate parameters, timeouts, error handling, and asynchronous video task status behavior after model updates.