ApiModels

Other Video Models

Vidrush S1, Runway, and Gemini Omni modes, pricing, and Vidrush API examples.

Overview

This page covers the remaining configured models: Vidrush S1, Runway, Gemini Omni Flash Cheap, and Gemini Omni Flash.

Supported modes

ModelModeDurationsResolutionsAspect ratiosAudio
p-videotext-to-video, image-to-video5s, 10s, 15s, 20s720p, 1080p16:9, 9:16, 4:3, 3:4, 3:2, 2:3, 1:1No
runwaytext-to-video, image-to-video5s, 10s720p, 1080p16:9, 4:3, 1:1, 3:4, 9:16No
gemini-omni-cheaptext-to-video, image-to-video10s720p16:9, 9:16No
gemini-omni-videotext-to-video, image-to-video, video-to-video4s, 6s, 8s, 10s720p, 1080p, 4k16:9, 9:16No

For gemini-omni-video video-to-video, provide video_urls. The v1 public request accepts image_urls and video_urls; it does not expose an audio_urls field.

Credit pricing

Vidrush S1

The public API identifier for Vidrush S1 is p-video.

The matrix is identical for text-to-video and image-to-video.

Resolution5s10s15s20s
720p20406080
1080p4080120160

runway

The matrix is identical for text-to-video and image-to-video. At 1080p, only 5s is a configured duration-price combination.

Resolution5s10s
720p1230
1080p30Not configured

gemini-omni-cheap

The price is identical for text-to-video and image-to-video.

Resolution10s
720p35

gemini-omni-video

For text-to-video and image-to-video:

Resolution4s6s8s10s
720p45607590
1080p45607590
4k105120135150

For video-to-video with video input, the configured per-generation prices are 120 credits at 720p, 120 at 1080p, and 180 at 4k.

cURL

curl -X POST https://vidrush-ai.com/api/v1/videos \
  -H "Authorization: Bearer $VIDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "p-video",
    "mode": "text-to-video",
    "prompt": "A red origami crane folding itself",
    "options": {
      "duration": "5s",
      "resolution": "720p",
      "aspect_ratio": "16:9"
    }
  }'

CLI

vidrush generate -m p-video -p "A red origami crane folding itself" \
  --duration 5s --resolution 720p --aspect-ratio 16:9 --wait

MCP

Use get_video_model before generate_video when choosing among Vidrush S1, Runway, and Gemini Omni configurations.

Notes

  • Do not send audio: true for models on this page.
  • gemini-omni-cheap uses a fixed 10-second, 720p configuration and accepts at most two image_urls.
  • gemini-omni-video has a separate video-input price branch; use video_urls only with video-to-video.
  • The public catalog is authoritative when a detailed price matrix is unavailable.