POST
https://zx1.deepwl.net
/
v1
/
video
/
remix
视频Remix
curl --request POST \
  --url https://zx1.deepwl.net/v1/video/remix \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "<string>",
  "prompt": "<string>",
  "size": "<string>",
  "aspect_ratio": "<string>",
  "task_id": "<string>",
  "parent_post_id": "<string>"
}
'
{
  "id": "grok:48a67431-0708-46d1-9ab9-83cb84700153",
  "status": "processing",
  "status_update_time": 1762685256
}

视频Remix

Grok 统一视频 remix 入口为 POST /v1/video/remix。与 OpenAI 格式的视频Remix 不同,原任务 ID 通过 Body 的 task_id 传入,而不是路径参数。
  • 路由入口是 POST /v1/video/remix
  • 必填 modelpromptsizeaspect_ratiotask_id
  • 提交成功后用 查询任务 轮询新返回的 id

方法与路径

POST /v1/video/remix

请求示例

curl -X POST https://zx1.deepwl.net/v1/video/remix \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{
    "model": "grok-video-3",
    "prompt": "play with another white cat",
    "aspect_ratio": "3:2",
    "size": "1080P",
    "task_id": "grok:48a67431-0708-46d1-9ab9-83cb84700153"
  }'

响应示例

{
  "id": "grok:48a67431-0708-46d1-9ab9-83cb84700153",
  "status": "processing",
  "status_update_time": 1762685256
}

认证

Authorization: Bearer YOUR_API_KEY

Body

model
string
必填
模型名称,例如 grok-video-3
prompt
string
必填
Remix 提示词。
size
string
必填
分辨率规格,传 720P1080P
aspect_ratio
string
必填
视频比例,可选 2:33:21:1
task_id
string
必填
原视频任务 ID,与 创建视频查询任务 返回的 id 一致。
parent_post_id
string
上游帖子 ID。部分 Apifox 示例中出现,非 schema 必填字段,按需传入。

Response

id
string
新 remix 任务 ID。
status
string
任务状态,常见值包括 processingcompletedfailed
status_update_time
integer
状态最近更新时间(Unix 时间戳)。

相关接口