ApiModels

Grok Imagine Models

Grok Imagine modes, credit pricing, and Vidrush API examples.

Overview

Vendor: Grok. grok-imagine creates video from text or an image prompt. grok-imagine-1-5 is an image-only model with a single 16-second, 720p configuration.

Supported modes

ModelModeDurationsResolutionsAspect ratiosAudio
grok-imaginetext-to-video, image-to-video6s, 10s, 15s, 30s480p, 720p2:3, 3:2, 1:1, 9:16, 16:9No
grok-imagine-1-5image-to-video only16s720p16:9, 9:16No

Credit pricing

grok-imagine

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

Resolution6s10s15s30s
480p10203060
720p20304590

grok-imagine-1-5

Resolution16s
720p20

All values are credits per generation.

cURL

curl -X POST https://vidrush-ai.com/api/v1/videos \
  -H "Authorization: Bearer $VIDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "grok-imagine-1-5",
    "mode": "image-to-video",
    "prompt": "The camera slowly pushes toward the subject",
    "image_urls": ["https://example.com/source.jpg"],
    "options": {
      "duration": "16s",
      "resolution": "720p",
      "aspect_ratio": "16:9"
    }
  }'

CLI

vidrush generate -m grok-imagine-1-5 \
  -p "The camera slowly pushes toward the subject" \
  --mode image-to-video --image https://example.com/source.jpg \
  --duration 16s --resolution 720p --aspect-ratio 16:9 --wait

MCP

Ask the MCP client to call generate_video with grok-imagine-1-5, an image_urls array, and mode: "image-to-video".

Notes

  • grok-imagine-1-5 supports only image-to-video and requires an image input.
  • Do not send audio: true for either Grok model.