xAI Grok Imagine Video v1.5 is a fast AI image-to-video generation model that turns a reference image into a short video guided by a text prompt, with 480p and 720p output options. Ready-to-use REST inference API for animating images, social media clips, creative storytelling, product visuals, marketing videos, concept videos, and professional image-to-video workflows with simple integration, no coldstarts, and affordable pricing.
就绪
$0.12每次运行·~83 / $10
A cinematic thriller video with clear shot transitions. Shot 1: Wide establishing shot of a dark modern office at night, city lights outside the glass windows, one woman sitting alone at a desk, only a desk lamp illuminating the room. Transition 1 to 2: Slow dolly-in from the wide shot toward the desk. Shot 2: Over-the-shoulder shot of the woman opening a locked drawer and finding a sealed folder inside. Her hand hesitates before touching it. Transition 2 to 3: Cut to an extreme close-up of her fingers breaking the seal on the folder. Shot 3: Close-up of her face as she reads the first page, her expression changing from curiosity to shock. Transition 3 to 4: Rack focus from her shocked face to the dark glass window behind her. Shot 4: A faint shadowy figure appears reflected in the window behind her, while she slowly turns her head. Cinematic suspense, realistic acting, stable face identity, natural motion, no subtitles, no text, no distortion.
xAI Grok Imagine Video V1.5 Image-to-Video generates short videos from a reference image and a natural-language prompt. It is designed for image-driven motion generation, cinematic concept clips, stylized social media content, and other prompt-based video creation workflows.
Image-guided video generation Start from a single reference image and animate it into a short video clip.
Prompt-based motion control Use text instructions to describe motion, camera behavior, atmosphere, and scene evolution.
Simple resolution choices
Choose between 480p and 720p depending on your quality and budget needs.
Predictable short-form generation Works well for short clips that need quick iteration and clean prompt-to-video control.
Production-ready API Suitable for concept visualization, creator content, ads, and lightweight motion storytelling.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired motion, camera movement, and scene. |
| image | Yes | Input image to animate. |
| duration | No | Output video duration in seconds. Range: 1–15. Default: 6. |
| resolution | No | Output video resolution. Supported values: 480p, 720p. Default: 720p. |
480p for lower cost or 720p for higher quality.A cinematic push-in shot as the subject slowly turns toward the camera, soft natural motion, subtle background movement, realistic lighting, polished commercial style
Pricing depends on output duration and resolution.
| Resolution | Price per Second | 5s Example |
|---|---|---|
| 480p | $0.12 | $0.60 |
| 720p | $0.20 | $1.00 |
Each request includes a fixed $0.01 input image charge
| Resolution | 1s | 5s | 10s | 15s |
|---|---|---|---|---|
| 480p | $0.13 | $0.61 | $1.21 | $1.81 |
| 720p | $0.21 | $1.01 | $2.01 | $3.01 |
480p costs $0.12 per second720p costs $0.20 per secondduration480p for quick testing and 720p for better final-quality clips.prompt and image are required.duration supports 1–15 seconds.resolution defaults to 720p.duration, resolution, and the fixed per-image surcharge.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/x-ai/grok-imagine-video-v1.5/image-to-video with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Grok Imagine Video v1.5 Image To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/x-ai/grok-imagine-video-v1.5/image-to-video" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"duration": 6,
"resolution": "720p"
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("x-ai/grok-imagine-video-v1.5/image-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"duration": 6,
"resolution": "720p"
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"x-ai/grok-imagine-video-v1.5/image-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"duration": 6,
"resolution": "720p"
}
)
print(output["outputs"][0]) # → URL of the generated outputGrok Imagine Video v1.5 Image To Video is a xAI model for video generation from images, exposed as a REST API on WaveSpeedAI. xAI Grok Imagine Video v1.5 is a fast AI image-to-video generation model that turns a reference image into a short video guided by a text prompt, with 480p and 720p output options. Ready-to-use REST inference API for animating images, social media clips, creative storytelling, product visuals, marketing videos, concept videos, and professional image-to-video workflows with simple integration, no coldstarts, and affordable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/x-ai/x-ai-grok-imagine-video-v1.5-image-to-video.
Grok Imagine Video v1.5 Image To Video starts at $0.12 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `resolution`, `duration`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/x-ai/x-ai-grok-imagine-video-v1.5-image-to-video.
Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.
Commercial usage rights depend on the model's license, set by its provider (xAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.