Grok Imagine Video
What is Grok Imagine Video
Grok Imagine Video is xAI Grok video generation, delivered through the fal provider. According to the model description, it supports both text-to-video and image-to-video generation.
Grok Imagine Video via varg vs. calling fal directly
| Feature | Calling fal directly | Via varg |
|---|---|---|
| Separate fal account & API key | Required | Not required |
| Combine with other models in one pipeline | No | Yes (multi-provider gateway) |
| Automatic caching | No | Yes |
| Unified credit billing | No | Yes |
| JSX composition | No | Yes |
When you route fal:grok_imagine/t2v through varg, you use a single API key and can compose it alongside models from other providers in the same pipeline.
Pricing
Grok Imagine Video costs $1.05. The pricing type is flat.
Code example
import { Video } from 'varg';
export default () => (
<Video
model="fal:grok_imagine/t2v"
prompt="A serene lake at sunset"
/>
);
Or call it directly with curl:
curl -X POST https://api.varg.ai/v1/generate \
-H "Authorization: Bearer $VARG_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"fal:grok_imagine/t2v","prompt":"A serene lake at sunset"}'
When to use Grok Imagine Video vs. other video models
No sibling models were provided in the source data for a direct comparison. Choose Grok Imagine Video when you specifically need xAI Grok video generation with text-to-video or image-to-video capabilities delivered through fal. Without additional distinguishing data such as speed, resolution, or audio support, compare available video models on their individual pages to find the best fit.
FAQ
Frequently asked questions about Grok Imagine Video via varg.
FAQ
How much does Grok Imagine Video cost via varg?
Grok Imagine Video costs $1.05 via varg. The pricing type is flat.
Do I need a separate fal API key to use Grok Imagine Video?
No. When you use Grok Imagine Video through varg, you only need your varg API key. varg handles provider authentication with fal automatically.
What inputs does Grok Imagine Video support?
According to the model description, Grok Imagine Video supports text-to-video and image-to-video generation.