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

# Gemini Omni Flash 1.1 T2V

> Gemini Omni Flash 1.1 T2V video API via SnapGen: text-to-video mode of Google's Gemini Omni Flash 1.1, billed from prepaid balance.

`gemini-omni-flash-1.1-t2v` is the text-to-video mode of Google's Gemini Omni Flash 1.1: 4 to 10 second clips with native audio at 360p to 4K.

| Property | Value                                                                                             |
| -------- | ------------------------------------------------------------------------------------------------- |
| Model ID | `gemini-omni-flash-1.1-t2v`                                                                       |
| Input    | prompt                                                                                            |
| Output   | 360p, 720p, 1080p, 4k video with native audio                                                     |
| Duration | 4, 6, 8, or 10 seconds                                                                            |
| Price    | 360p: \$0.09 per second; 720p: \$0.09 per second; 1080p: \$0.09 per second; 4k: \$0.18 per second |

Confirm live rates on the [models page](https://snapgen.org/models/gemini-omni-flash).

<ParamField body="model" type="string" required>
  Set to `gemini-omni-flash-1.1-t2v`.
</ParamField>

<ParamField body="prompt" type="string" required>
  Describe the subject, action, camera movement, lighting, and audio intent.
</ParamField>

<ParamField body="seconds" type="string" default="10">
  Output length: 4, 6, 8, or 10 seconds.
</ParamField>

<ParamField body="aspect_ratio" type="string">
  One of `16:9`, `9:16`. Send it explicitly; do not send a pixel `size`.
</ParamField>

<ParamField body="resolution" type="string" default="720p">
  One of `360p`, `720p`, `1080p`, `4k`. The price depends on the resolution.
</ParamField>

## Request

```bash theme={null}
curl https://api.snapgen.org/v1/videos \
  -H "Authorization: Bearer $SNAPGEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-omni-flash-1.1-t2v",
    "prompt": "A glassblower shapes a glowing vase, slow push-in, warm light",
    "seconds": "4",
    "aspect_ratio": "16:9",
    "resolution": "720p"
  }'
```

The response returns a queued task `id`. Poll and download with the same `model`:

```bash theme={null}
curl "https://api.snapgen.org/v1/videos/$VIDEO_ID?model=gemini-omni-flash-1.1-t2v" \
  -H "Authorization: Bearer $SNAPGEN_API_KEY"

curl -L "https://api.snapgen.org/v1/videos/$VIDEO_ID/content?model=gemini-omni-flash-1.1-t2v" \
  -H "Authorization: Bearer $SNAPGEN_API_KEY" \
  --output video.mp4
```

See the [Video API workflow](/api-reference/video-generation) for polling intervals, webhooks, and failure handling.

## Price examples

| Resolution | Per second | 4-second clip |
| ---------- | ---------- | ------------- |
| 360p       | \$0.09     | \$0.36        |
| 720p       | \$0.09     | \$0.36        |
| 1080p      | \$0.09     | \$0.36        |
| 4k         | \$0.18     | \$0.72        |

<Note>
  Media inputs must be public `http` or `https` URLs. Private network addresses and
  local files are rejected. Failed generations are not charged.
</Note>
