Skip to content
Docs menu

Video models

Grok Imagine Video 1.5

On this page

Grok Imagine Video 1.5 — high-quality AI video generation.

modelIdgrok-imagine-video-1-5-preview
Modalityvideo
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Defaultgrok-imagine-video-1-5-previewPOST /api/v1/generateimage_urls
Poll taskGET /api/v1/task/{id}?model=grok-imagine-video-1-5-preview

Input parameters

FieldTypeRequiredValues / example
promptstringNoPrompt for video generation Max 4096 characters. (example: Create an 8-second cinematic product film. Slow push-in on a matte-black wireless speaker turning a quarter revolution on a brushed-steel plinth, dust motes… — full value in the request example)
image_urlsstring[]YesUpload an image file to use as input for the API (image URL)
aspect_ratiostringNoAspect ratio for video generation.If not uploaded, follow the image size. (options: auto | 1:1 | 16:9 | 9:16 | 3:2 | 2:3) (default: auto)
resolutionstringNoResolution for video generation. (options: 480p | 720p) (default: 480p)
durationnumberNoVideo duration in seconds. Range: [1, 15]. Default: 8. (range 1-15) (default: 8)
nsfw_checkerbooleanNoA configurable parameter. Defaults to true in the Playground. (true/false) (default: true)

Example request

bash
curl -X POST https://you.bot/api/v1/generate \
  -H "Authorization: Bearer $YOUBOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"modelId":"grok-imagine-video-1-5-preview","input":{"prompt":"Create an 8-second cinematic product film. Slow push-in on a matte-black wireless speaker turning a quarter revolution on a brushed-steel plinth, dust motes drifting through a single hard key light. Deep shadows, one warm rim highlight tracing the top edge, shallow depth of field settling on the speaker grille. Steady tripod move, no cuts, no camera shake. Ultra-realistic commercial cinematography. No logos, no brand references, no watermark, no people.","image_urls":["https://you.bot/examples/grok-imagine-text-to-image.jpg"],"aspect_ratio":"auto","resolution":"480p","duration":8,"nsfw_checker":true}}'