feed 获取进度
GET
{{BASE_URL}}pika/feed/{taskId}最后修改时间: 4 天前
字段 类型 说明
id string 任务id
promptText string 提示词
videos array 视频数组
videos[].id string 视频id
videos[].status string 视频状态 finished 为完成 error 为错误
videos[].seed number 视频种子
videos[].resultUrl string 视频地址
videos[].videoPoster string 封面图片
videos[].sharingUrl string 视频分享地址
videos[].error string 当状态为error 有错误说明
videos[].progress number 进度
请求参数
Path 参数
taskId
string
必需
Header 参数
Authorization
string
可选
示例值:
sk-xxxxx
Body 参数application/json
task_id
string
任务ID
示例值:
573772da-c2ec-4a60-987f-80b5ecc79b20
示例
{
"task_id": "573772da-c2ec-4a60-987f-80b5ecc79b20"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例
code200示例
{
"id": "66e0818e-05fb-454e-b246-a6f253e9ffbf",
"promptText": "Plane fly",
"videos": [
{
"id": "66e0818e-05fb-454e-b246-a6f253e9ffbf",
"status": "finished",
"seed": 3183047765,
"resultUrl": "https://cdn.pika.art/v1/66e0818e-05fb-454e-b246-a6f253e9ffbf/Plane_fly_seed3183047765.mp4",
"sharingUrl": "https://cdn.pika.art/v1/66e0818e-05fb-454e-b246-a6f253e9ffbf/Plane_fly_seed3183047765_share.mp4",
"videoPoster": "https://cdn.pika.art/v1/66e0818e-05fb-454e-b246-a6f253e9ffbf/poster.jpg",
"imageThumb": "https://cdn.pika.art/v1/66e0818e-05fb-454e-b246-a6f253e9ffbf/thumbnail.jpg",
"duration": 5,
"error": "",
"progress": 100
}
]
}
最后修改时间: 4 天前