All models

xAI: Grok Imagine Video 1.5

x-ai/grok-imagine-video-1.5
video

Grok Imagine Video 1.5 is a video generation model from SpaceXAI. It creates videos from text prompts, with an optional starting image to guide the scene. It can direct subject and camera motion, pacing, atmosphere, and physical behavior while maintaining visual continuity, and can generate synchronized sound effects, ambience, and dialogue.

Price
Released
Jul 20, 2026

Calculator

per clip · 1s

Parameters

promptrequired, up to 4,096 characters
seconds
size
input_references2–7 images

How to use via API

import time
from openai import OpenAI

client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
video = client.videos.create(
    model="x-ai/grok-imagine-video-1.5",
    prompt="Кот-космонавт на мотоцикле, ночь",
    seconds="1",
    size="480x480",
    # input_references=[...]  # 2–7 референс-картинок
)
while video.status not in ("completed", "failed"):
    time.sleep(5)
    video = client.videos.retrieve(video.id)
client.videos.download_content(video.id).write_to_file("video.mp4")
API docsTry in the bot