> ## Documentation Index
> Fetch the complete documentation index at: https://docs.freemodel.app/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 or two public source-image URLs. The first image is the start frame. The optional second image is the end frame.

| Property | Value                           |
| -------- | ------------------------------- |
| Model ID | `gemini-omni-i2v`               |
| Input    | Prompt + 1-2 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 `1280x720` or `1920x1080` for 16:9 output. Use `720x1280` or `1080x1920`
  for 9:16 output. Other sizes are not supported.
</ParamField>

<ParamField body="image_urls" type="string[]" required>
  One or two publicly reachable `http` or `https` image URLs. Each source image
  must be no larger than 5 MiB.
</ParamField>

## Request

```bash theme={null}
curl https://api.freemodel.app/v1/videos \
  -H "Authorization: Bearer $FREEMODEL_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>
