> ## 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 I2V

> Animate source images into a fixed 10-second video.

`gemini-omni-i2v` creates a 10-second video from a prompt and one to five public source-image URLs.

| Property | Value                           |
| -------- | ------------------------------- |
| Model ID | `gemini-omni-i2v`               |
| Input    | Prompt + 1-5 source images      |
| Output   | 720p or 1080p, native audio     |
| Price    | \$0.25 per request (25 credits) |

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

<ParamField body="prompt" type="string" required>
  Describe how the supplied image should move and how the shot should develop.
</ParamField>

<ParamField body="seconds" type="string" required>
  Set to `"10"`.
</ParamField>

<ParamField body="size" type="string" default="1280x720">
  Use a landscape, portrait, or square pixel size. The gateway maps the
  dimensions to the matching aspect ratio and 720p or 1080p tier.
</ParamField>

<ParamField body="image_urls" type="string[]" required>
  One to five publicly reachable `http` or `https` image URLs.
</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-i2v",
    "prompt": "The subject turns toward the window as rain begins outside",
    "seconds": "10",
    "size": "1280x720",
    "image_urls": ["https://example.com/source.jpg"]
  }'
```

The response returns a queued task `id`. Follow the [Video API workflow](/api-reference/video-generation) to poll and download.

<Note>
  Private network addresses and local files cannot be used as references. Host
  each source at a public URL before submitting the task.
</Note>
