提交生成视频任务-异步
将废弃POST
{{BASE_URL}}/luma/generations_sync最后修改时间: 4 天前
提交任务速度更快,适合有上传图片这种响应慢的情况,避免客户端超时
但是,失败系统无法自动重试,失败率会更高
请求参数
Header 参数
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
user_prompt
string
必需
aspect_ratio
string
可选
expand_prompt
boolean
可选
是否开启prompt 优化
image_url
string
可选
参考图,支持第三方图片地址、Base64
image_end_url
string
可选
关键帧,支持第三方图片地址、Base64
notify_hook
string
可选
回调地址: https://xxxxxxx
示例
{
"user_prompt": "cat dance",
"aspect_ratio": "16:9",
"expand_prompt": true
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
{
"id": "9d4b7516-77e5-481a-b015-48313946f33b",
"prompt": "cat dance",
"state": "pending",
"created_at": "2024-07-01T07:35:13.498660Z",
"video": null,
"liked": null,
"estimate_wait_seconds": null
}
最后修改时间: 4 天前