Grok Video · 视频生成

grok-video-1.5-proNEW

📌 这是什么Grok video 1.5 Pro: custom duration and 480P-1080P resolutions.
💡 什么时候用Use to generate video with grok-video-1.5-pro.

接口地址

用途方法路径
提交任务POST/api/cqt/generator/grok
查询结果GET/api/cqt/info/grok?id={taskId}
建议轮询时间Video is generated asynchronously — poll every 15s until status = succeeded / failed.

请求参数

参数类型必填说明
modelstring必填Fixed: grok-video-1.5-pro
promptstringVideo description
imageUrlsstring[]First-frame reference image for image-to-video (optional).
durationintegerDuration (sec), custom >=1, default 6; directly affects billing.
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

请求示例

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-1.5-pro",
    "prompt": "a paper plane flying over a city",
    "duration": 6,
    "resolution": "720p",
    "aspectRatio": "16:9"
  }'
# -> { "code":200, "data":"<taskId>" }

响应示例

{
  "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"
  }
}

响应字段说明

字段类型说明
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

计费与积分

Per second = per-second credits × duration (sec) × your rate. Per-second: 480P/540P=5, 720P=6, 1080P=7. (x your user rate). Auto-refunded on failure.