> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mynth.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Gemini Omni Flash 1.1

> Use Gemini Omni Flash 1.1 with the Mynth REST API. Text-to-video, image-to-video, resolution, duration, and native audio.

```text Model ID theme={"theme":"kanagawa-dragon"}
google/gemini-omni-flash-1.1
```

See pricing & more on [mynth.io](https://mynth.io/models/google%2Fgemini-omni-flash-1.1).

## Capabilities

|                |                                  |
| -------------- | -------------------------------- |
| **Modes**      | Text-to-video · Image-to-video   |
| **Inputs**     | First frame, optional last frame |
| **Resolution** | 720p · 1080p · 4k                |
| **Duration**   | 3–10 seconds                     |
| **Audio**      | Native, always on                |

Gemini Omni Flash 1.1 is Google's multimodal video model: prompt-driven clips with synced audio, plus first/last-frame control for image-to-video.

## Generate

```bash theme={"theme":"kanagawa-dragon"}
curl https://api.mynth.io/video/generate \
  -X POST \
  -H "Authorization: Bearer $MYNTH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "A cinematic wide shot of a lighthouse on a rocky cliff at dusk, waves crashing below, the beam sweeping across the dark sea",
    "model": "google/gemini-omni-flash-1.1",
    "resolution": "720p",
    "duration": 8
  }'
```

Omit `resolution` and `duration` to use the model defaults: 720p and 8 seconds. Native audio is always generated.

## Use inputs

Pass a starting frame for image-to-video. Add a last frame to interpolate between the two.

```bash theme={"theme":"kanagawa-dragon"}
curl https://api.mynth.io/video/generate \
  -X POST \
  -H "Authorization: Bearer $MYNTH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "The dog turns its head and wags its tail in warm sunlight",
    "model": "google/gemini-omni-flash-1.1",
    "inputs": [
      {
        "type": "image",
        "as": "first_frame",
        "source": { "type": "url", "url": "https://example.com/first.jpg" }
      }
    ],
    "resolution": "720p",
    "duration": 8
  }'
```
