# Google Gemini Omni Flash > Google Gemini Omni Flash text-to-video via Fal.AI. Generates a video directly from a descriptive text prompt — pacing and audio (dialogue, background music) are controlled in the prompt itself, in 16:9 or 9:16 at 3-10 second durations. - **Provider**: fal - **Model ID**: google/gemini-omni-flash - **Category**: video_generation - **Credits**: 2320 per request - **Pricing Type**: input_based ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `duration` (integer, optional): The duration of the generated video, in seconds. (Default: `8`; Range: min: 3, max: 10) - `prompt` (string, **required**): The text prompt describing the video you want to generate. - `aspect_ratio` (string, optional): The aspect ratio of the generated video. (Default: `16:9`; Options: `16:9`, `9:16`) ## Example Request ```json { "model": "google/gemini-omni-flash", "input": { "duration": 8, "prompt": "A cinematic wide shot of a lighthouse on a rocky cliff at dusk, waves crashing below, the beam slowly sweeping across the dark sea.", "aspect_ratio": "16:9" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type json ## Tags video-generation, text-to-video, google ## Documentation https://fal.ai/models/google/gemini-omni-flash