Public Model / gemini-omni

Gemini Omni Flash API pricing

A compact Gemini Omni option for repeated short-form video iterations.

Availability
Available
Tasks
Create Video
Published rates from
$0.315

Request calculator

Configure Gemini Omni Flash

Controls and rates come directly from the checked public catalog.

Interactive calculator

Price a direct generation

Choose a task, configure its inputs, and see the current catalog price.

Step 1

Choose a generation type

Step 2

Configure generation

Model
Gemini Omni Flash
Output duration4s
Reference videoNone
Outputs1

Step 3

Reference total

$0.3151 output at $0.315 each
Generation
$0.3151 generation x $0.315
Minimum request
$0.315
Get started

The API estimate for your exact request is authoritative before paid work starts.

Best fit

Use Gemini Omni Flash for campaign iteration where short outputs and a consistent text, image, or video-reference interface matter most.

Use cases

  • Rapid concept variations
  • Short social cutaways

Know before building

  • Outputs use the same 4, 6, or 8 second and 9:16 or 16:9 request bounds.

Generated contract

Tasks, controls, and rates

Published rates

video.create
Varies by output duration, reference video
$0.315 / generation$0.315 minimum

Request controls

video.createAspect ratio9:16 · 16:9
video.createDuration seconds4 · 6 · 8
video.createPromptText input
video.createReference imagesUp to 7 items
video.createReference videoMedia or structured input
video.createSeedMedia or structured input

Lifecycle: queued -> running -> succeeded -> failed -> cancelled -> manual_review

Output fields: assets

Runnable examples

Estimate first, then create

Both requests use the same normalized task, model, and input payload. Creating work requires an API key and idempotency key.

1. Estimate

curl https://api.entirefeed.com/v1/estimate \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
  "task": "video.create",
  "model": "gemini-omni-flash",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 4,
    "prompt": "A fast-cut vertical launch teaser on a bright color-block set"
  }
}'

2. Create

curl https://api.entirefeed.com/v1/generations \
  -X POST \
  -H "Authorization: Bearer $ENTIREFEED_API_KEY" \
  -H "Idempotency-Key: gemini-omni-flash-example-001" \
  -H "Content-Type: application/json" \
  -d '{
  "task": "video.create",
  "model": "gemini-omni-flash",
  "input": {
    "aspect_ratio": "9:16",
    "duration_seconds": 4,
    "prompt": "A fast-cut vertical launch teaser on a bright color-block set"
  }
}'