# Gemini Omni 1.1 Flash > Google's fast multimodal video generation and editing model with native audio, using the Interactions API. Text-to-video, image-to-video, keyframe interpolation, reference-to-video, and video editing at 360p-4K. - **Provider**: replicate - **Model ID**: google/gemini-omni-1.1 - **Category**: video_generation - **Credits**: 3490 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 - `image` (string, optional): Starting image to animate into a video. When provided without last_frame, the video is generated from this image. - `aspect_ratio` (string, optional): Video aspect ratio. Ignored when editing an existing video. (Default: `16:9`; Options: `16:9`, `9:16`) - `last_frame` (string, optional): Ending image. When provided together with image, the model interpolates a smooth transition between the two frames. - `video` (string, optional): An existing video to edit. Describe the change in the prompt (e.g. 'make the sky stormy, keep everything else the same'). The model applies the edit while preserving the rest of the video. - `prompt` (string, **required**): Text prompt describing the video. Include details like scene, camera movement, lighting, mood, and audio for best results. Put anything you want to avoid in the prompt too (e.g. 'no dialogue'). - `resolution` (string, optional): Resolution of the generated video. 360p is a fast draft mode. (Default: `720p`; Options: `360p`, `720p`, `1080p`, `4k`) - `reference_images` (array, optional): Reference images that guide the subject and style of the video (not used as literal frames). Use this to generate a video featuring specific characters or objects. (Default: `[]`) ## Example Request ```json { "model": "google/gemini-omni-1.1", "input": { "prompt": "A cinematic drone shot through misty pine mountains at sunrise, gentle wind and birdsong. No dialogue.", "resolution": "720p", "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 url ## Tags google, gemini, video-generation, video-editing, native-audio, text-to-video, image-to-video ## Documentation https://replicate.com/google/gemini-omni-1.1