OyeFilmy Logo
personFreeUpgrade
bolt0cr
U

Video generation API

Gemini Omni

Google Gemini Omni Flash — multimodal video generation with T2V, I2V, reference, and video editing.

Provider: Google7 models

Available models

Model keyDisplay nameCapabilityAtlas Cloud slug
gemini_omni_flash_t2vGemini Omni Flash T2Vtext-to-videogoogle/gemini-omni-flash/text-to-video
gemini_omni_flash_i2vGemini Omni Flash I2Vimage-to-videogoogle/gemini-omni-flash/image-to-video
gemini_omni_flash_ref2vidGemini Omni Flash Ref2Vidreference-to-videogoogle/gemini-omni-flash/reference-to-video
gemini_omni_flash_vid_editGemini Omni Flash Video Editvideo-editgoogle/gemini-omni-flash/video-edit
gemini_omni_flash_t2v_devGemini Omni Flash T2V Devtext-to-videogoogle/gemini-omni-flash/text-to-video-developer
gemini_omni_flash_i2v_devGemini Omni Flash I2V Devimage-to-videogoogle/gemini-omni-flash/image-to-video-developer
gemini_omni_flash_ref2vid_devGemini Omni Flash Ref2Vid Devreference-to-videogoogle/gemini-omni-flash/reference-to-video-developer

Endpoint

POST /api/generate

Request body

ParameterTypeRequiredDescription
modelKeystringOne of the model keys listed above
promptstringText description of the image to generate
inputUrlstringInput image URL (for edit/i2i models)
aspectRatiostring"1:1", "16:9", "9:16", etc.
imageQualitystring"Low", "Medium", "High"
styleRefstring | string[]Style reference image URL(s)
charRefstring | string[]Character reference image URL(s)
brandIdstringBrand DNA ID for brand-consistent generation

Code example

curl -X POST https://api.oyefilmy.com/api/generate \
  -H "Authorization: Bearer of_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "modelKey": "gemini_omni_flash_t2v",
    "prompt": "A smooth camera pan through a modern art gallery with abstract sculptures"
  }'

Response

{
  "success": true,
  "predictionId": "pred_abc123...",
  "status": "processing",
  "model": "google/gemini-omni-flash/text-to-video",
  "creditCost": 5
}

Gemini Omni Flash uses Google's multimodal architecture. Developer variants have relaxed safety filters for creative use cases.

Related