// the world's top video model, half price
Generate with Grok Imagine 1.5.
Pay half. Start free.
Type a prompt, hit generate. Video, image and text on every Grok model at 50% of xAI list price. $5 in free credits on signup, no card required.
PLAYGROUND
Try the API live
Requests use your Grokified balance. Code updates as you type.
MODEL
$0.050/sec · ~$0.125 for 5s at 50% off
PROMPT
DURATION
5s1s15s
ASPECT RATIO
RESOLUTION
OUTPUT
// video will appear here
# Step 1: Start generation REQUEST_ID=$(curl -s -X POST https://api.grokified.com/v1/videos/generations \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "model": "grok-imagine-video", "prompt": "A glowing rocket launching at dawn", "duration": 5, "aspect_ratio": "16:9", "resolution": "480p" }' | jq -r '.request_id') # Step 2: Poll until ready (~1-3 min) while true; do RESULT=$(curl -s https://api.grokified.com/v1/videos/$REQUEST_ID \ -H "Authorization: Bearer YOUR_API_KEY") STATUS=$(echo "$RESULT" | jq -r '.status') if [ "$STATUS" = "done" ]; then echo "$RESULT" | jq -r '.video.url'; break elif [ "$STATUS" = "failed" ] || [ "$STATUS" = "expired" ]; then echo "Request $STATUS"; break fi sleep 5 done
