生成视频
开发中POST
{{BASE_URL}}/luma/generations请求参数
Body 参数application/json
user_prompt
string
必需
expand_prompt
boolean
必需
是否开启prompt 优化
loop
boolean
循环一张参考图
image_url
string
必需
参考图,支持第三方图片地址、Base64
image_end_url
string
必需
关键帧,支持第三方图片地址、Base64
示例
{
"user_prompt": "cat dance",
"expand_prompt": true,
"loop": false,
"image_url": "https://xxxxxx",
"image_end_url": "https://xxxxxx"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
必需
prompt
string
必需
state
string
必需
created_at
string
必需
video
null
必需
liked
null
必需
estimate_wait_seconds
null
必需
示例
{
"id": "9d4b7513-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
}
最后修改时间: 8 天前