Grok Video · Video Generation

grok-video-3-maxNEW

📌 What is thisGrok video 3 Max: fixed 15s duration; 480P-1080P.
💡 When to useUse to generate video with grok-video-3-max.

Endpoints

UsageMethodPath
Submit taskPOST/api/cqt/generator/grok
Query ResultGET/api/cqt/info/grok?id={taskId}
Recommended polling intervalVideo is generated asynchronously — poll every 15s until status = succeeded / failed.

Request Parameters

ParamTypeRequiredDescription
modelstringRequiredFixed: grok-video-3-max
promptstringVideo description
imageUrlsstring[]Optional first-frame reference image.
durationintegerFixed 15s (input ignored).
resolutionstring480p / 540p / 720p / 1080p, default 480p.
aspectRatiostringRatio 2:3 / 3:2 / 1:1 / 16:9 / 9:16, default 16:9
modestringfun / normal / spicy (invalid ignored)
nsfwCheckerbooleanEnable NSFW check, default false
callBackUrlstringCompletion callback URL

Request Example

curl -X POST https://api.cqtai.com/api/cqt/generator/grok \
  -H 'Authorization: Bearer <API_KEY>' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "grok-video-3-max",
    "prompt": "a paper plane flying over a city",
    "resolution": "720p",
    "aspectRatio": "16:9"
  }'
# -> { "code":200, "data":"<taskId>" }

Response Example

{
  "code": 200,
  "msg": "success",
  "data": {
    "id": "35592194e2c14f868b960061311d3955",
    "resultUrl": "https://r2.geeknow.top/videos/288/task_Vpw2drsWF6DKZQY2rpNQ8XjtUvGa2i02.mp4",
    "status": "succeeded",
    "errorMsg": null,
    "createTime": "2026-07-10 10:53:11",
    "completeTime": "2026-07-10 10:53:55"
  }
}

Response Fields

FieldTypeDescription
codenumberStatus code; 200 means success
msgstringStatus message; "success" on success
data.idstringTask ID (taskId); use it to poll GET /api/cqt/info
data.statusstringTask status: succeeded / failed / otherwise still processing
data.resultUrlstringURL of the generated video; returned when status = succeeded, null otherwise
data.errorMsgstring | nullFailure reason; null on success
data.createTimestringTask creation time
data.completeTimestring | nullTask completion time; null until finished

Billing & Credits

Per second (fixed 15s) = per-second credits × 15 × your rate. Per-second: 480P/540P=4, 720P=5, 1080P=6. E.g. 720P = 5×15 = 75. (x your user rate). Auto-refunded on failure.