Skip to content
Playcut Docs

Grok Imagine Video: classic vs 1.5, modes, pricing

Grok Imagine Video is xAI’s video model family and Playcut’s budget video tier. Two versions are available: classic (grok-imagine-video, 20 credits/second) and 1.5 (grok-imagine-video-1.5-preview, 32 credits/second). Both cap out at 720p. Pick classic if you need reference-to-video or clip extension — it is the only Grok version that supports them. Pick 1.5 if you are animating a still image and want the better result; it is image-to-video only — it hard-rejects both reference images and text-to-video.

Imagine Video (classic)Imagine Video 1.5
Model idgrok-imagine-videogrok-imagine-video-1.5-preview
ProviderxAIxAI
Modest2v, i2v, r2v, extensioni2v only (t2v verified rejected by xAI, 2026-07-21)
Aspect ratios16:9, 4:3, 1:1, 9:16, 3:4, 3:2, 2:3same 7 offered, unverified on 1.5
Resolutions480p, 720p480p, 720p
Durationt2v 1–15 s · i2v / r2v / extension 1–10 si2v 1–10 s
Default duration6 s6 s
Max reference images70
Credits20 / second32 / second

No 1080p and no 4K exist anywhere in the Grok video family. If you need those, use Veo 3.1 or Seedance 2.0.

If you want to…Use
Animate a still image at the best quality Grok offers1.5
Drive a video from up to 7 reference imagesclassic — 1.5 cannot do it at all
Extend an existing clipclassic — the only Grok version wired for extension
Generate from text at the lowest price per secondclassic (20 cr/s vs 32 cr/s)
Use a non-16:9 aspect ratio with confidenceclassic — 1.5’s ratio list is inherited, not verified

1.5 costs 1.6× classic per second. Classic is the cheapest video model in the Playcut catalogue.

Prompt only. Duration 1–15 seconds, resolution 480p or 720p.

1.5 does not support this mode: a live probe (2026-07-21) confirmed xAI rejects it with “Text-to-video is not supported for this model,” so Playcut blocks 1.5 text-to-video before any credits are held. Use classic or Veo for text-to-video.

One source image plus a prompt. The image pins the first frame of the clip — this is a frame lock, not a style hint. Duration is capped at 10 seconds on this mode.

This is 1.5’s headline strength and the main reason to pay the extra 12 credits per second.

Up to 7 reference images plus a prompt. References guide appearance and style without locking any frame. In your prompt you can address them positionally as <IMAGE_1>, <IMAGE_2>, and so on. Duration is capped at 10 seconds.

xAI publishes no documented upper bound on reference count; 7 is a Playcut-imposed ceiling, and the API rejects an eighth.

One existing video asset plus a prompt. durationSeconds here is the length of the extension only, not of the finished clip — a 10-second input with durationSeconds: 5 produces a 15-second output. You are billed for the added seconds, not for the total. Extension length is capped at 10 seconds per call server-side — but note that the public generate-video-extension tool schema currently locks durationSeconds to 8, so over the API an extension is always 8 seconds.

  • Interpolation — Veo 3.1 only on Playcut.
  • Video edit — Wan 2.7 only on Playcut. The Playcut API returns a 400 for Grok video edit even though xAI ships an edit endpoint.

Playcut credits, charged per second of output video:

Model480p720p
grok-imagine-video20 cr/s20 cr/s
grok-imagine-video-1.5-preview32 cr/s32 cr/s

480p and 720p cost the same. Choosing 480p saves you nothing.

Typical clips at the 6-second default:

ClipClassic1.5
6 s120 credits192 credits
10 s200 credits320 credits
15 s (text-to-video only)300 credits480 credits

Credits are held at submission, before the job is dispatched. A request that the provider later rejects has already reserved its credits; failed and cancelled tasks are refunded automatically.

Underlying provider cost is $0.050/second for classic and $0.080/second for 1.5, both taken from xAI’s published model pages on 2026-07-21.

  • 1.5 hard-rejects reference images. Verified live 2026-07-17. There is no partial support and no fallback.
  • 1.5’s aspect ratios are inherited, not verified. The 7 ratios offered on 1.5 were copied from classic. xAI publishes no ratio list for 1.5. Treat anything other than 16:9 on 1.5 as unverified — it may 400 at the provider.
  • Over-spec resolutions silently downgrade. Asking for 1080p or 4K on either Grok model does not error — it returns 720p and bills at the 720p rate.
  • The 15-second slider does not apply to every mode. Only text-to-video accepts up to 15 seconds. Image-to-video, reference-to-video and extension are capped at 10 seconds server-side and reject longer requests.
  • Video edit is not reachable. Some Playcut surfaces still advertise video edit on classic; the API rejects it with “Video edit is only supported by wan-2.7”.
  • Moderation is prompt-side and opaque. xAI exposes no strict-moderation toggle. A flagged job surfaces only as a failed task, with no category detail.
  • REST API constraints are tighter than the picker in three places (verified in the tool request schemas on 2026-07-21). Every video tool shares one aspectRatio enum (16:9, 9:16, 21:9, 4:3, 1:1, 3:4) and one duration floor, so over the API: durationSeconds must be 4 or above, 3:2 and 2:3 are not accepted on any video endpoint, and the extension endpoint locks durationSeconds to 8. Those combinations are reachable only in the Playcut app, not through the public tools API.

Both versions run through the standard tools registry endpoint described in the Quickstart. Select the version with the model field.

Terminal window
curl -X POST https://api.playcut.ai/api/v1/tools/generate-video-from-text/execute \
-H "Authorization: Bearer $PLAYCUT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"workerId": "65f3a1b2c3d4e5f600000001",
"model": "grok-imagine-video",
"prompt": "A neon-lit alley in the rain, slow dolly forward",
"aspectRatio": "16:9",
"resolution": "720p",
"durationSeconds": 6
}'

Every call returns a taskId. Poll it with get-task-status or block on wait-for-task, then fetch the result with download-asset — the flow is identical for all models and is walked through in the Quickstart.

From an MCP client the same four operations are the tools generate-video-from-text, generate-video-from-image, generate-video-from-reference and generate-video-extension.