Grok Imagine Video 1.5: generating clips billed by the second
grok-imagine-video-1.5 is 0.1× and charged per generated second, not per token. An 8-second 720p clip is $0.112. The call is asynchronous: create, poll, download.
Billing is per second of video, at 0.1×
This model has no context window and no output token limit, because tokens are not the unit. The catalog prices it per generated second, and the 0.1× multiplier applies to that per-second rate the same way it applies to a per-token rate elsewhere.
The official rates are $0.08 per second at 480p, $0.14 at 720p and $0.25 at 1080p. At 0.1× you are charged $0.008, $0.014 and $0.025 per second respectively. An 8-second 720p clip is 8 × $0.014 = $0.112; the same clip at 480p is $0.064 and at 1080p is $0.20.
Clips run from 1 to 15 seconds. The most expensive single generation available is therefore 15 seconds at 1080p: 15 × $0.025 = $0.375. There is no request you can make on this id that costs more than that.
The call is asynchronous: create, poll, download
Generation does not return a video inline. POST to /openai/v1/videos returns a video id immediately; you then poll GET /openai/v1/videos/{video_id} until it reports completion, and fetch the file from GET /openai/v1/videos/{video_id}/content.
That is three calls for one clip, and a client written against the chat-completions pattern will not work. Budget for the wait in your own timeouts rather than in the request: the create call answers fast because it has not made anything yet.
Authentication is the OpenAI-shaped one throughout — Authorization: Bearer $TOKEN_SHARE_KEY on all three calls, including the content download.
export TOKEN_SHARE_KEY="<your-pool-api-key>"
# 1. Create. Returns a video id; nothing is rendered yet.
VIDEO_ID=$(curl -sS https://token-share.app/openai/v1/videos \
-H "Authorization: Bearer $TOKEN_SHARE_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok-imagine-video-1.5",
"prompt": "Animate a cinematic sunrise over snow-covered mountains",
"seconds": "8",
"resolution": "720p",
"aspect_ratio": "16:9"
}' | jq -r '.id')
echo "video id: $VIDEO_ID"
# 2. Poll until the job leaves the in-progress state.
until curl -sS "https://token-share.app/openai/v1/videos/$VIDEO_ID" \
-H "Authorization: Bearer $TOKEN_SHARE_KEY" \
| jq -e '.status != "queued" and .status != "in_progress"' >/dev/null; do
sleep 5
done
# 3. Download the rendered file.
curl -L "https://token-share.app/openai/v1/videos/$VIDEO_ID/content" \
-H "Authorization: Bearer $TOKEN_SHARE_KEY" \
-o "$VIDEO_ID.mp4"What you can ask for
Input can be text alone, a single guiding image, or a set of reference images — up to seven. Output resolutions are 480p, 720p and 1080p, and aspect ratios cover 1:1, 16:9, 9:16, 4:3, 3:4, 3:2 and 2:3, so vertical and square framings are first-class rather than a crop.
The catalog notes that 1080p availability depends on the xAI team attached to the account serving the request. Treat 1080p as a setting to verify on your own key rather than one to assume, and have a 720p fallback in the code path that generates it.
Resolution is a price decision as much as a quality one: 1080p is roughly 3.1× the per-second rate of 480p and 1.8× that of 720p. On a single clip that is cents; on a pipeline generating hundreds a day it is the largest lever you have on this id.
Estimating a video budget
Because the unit is a second, the estimate is a multiplication rather than a measurement — unlike token-billed models, you know the cost before the request runs. Clips per day × seconds per clip × the consumer per-second rate for your resolution.
Two hundred 6-second clips a day at 720p is 200 × 6 × $0.014 = $16.80 per day, about $504 over 30 days. The same volume at 480p is $9.60 a day; at 1080p it is $30. Halving the clip length halves each of those exactly.
One consequence worth designing around: a failed or discarded clip costs the same as a used one, because the charge attaches to the generation, not to whether you liked it. Prompt iteration on 480p and rendering finals at the resolution you ship is the cheapest way to work.