Chat Bp
  1. 逆向
Chat Bp
  • OpenAI通用接口
    • 聊天接口(Chat)
      • 聊天接口(OpenAI格式通用)
      • gpts
      • gemini-pro
      • gpt-4-all(分析图片)
      • gpt-4-all(生成图片)
      • gpt-4-vision-preview
    • 图像接口(Images)
      • 图像生成
      • 图像编辑
      • 异步任务查询
    • 帮助中心
      • 常见问题及解决办法
  • gemini
    • Gemini多模态
      POST
  • Midjourney API文档
    • 快速教学-完整流程一遍过
    • 任务提交
      • 提交Imagine任务
      • 提交Action任务
      • 提交Blend任务
      • 提交Modal任务
      • 提交Describe任务
      • 提交Shorten任务
      • 提交SwapFace任务
      • 上传文件到discord
    • 任务查询
      • 指定id查询任务
      • 指定id列表查询任务
      • 获取任务图片的seed
  • Runway视频接口
    • 逆向
      • generate(文本)
        POST
      • generte(参考图片)
        POST
      • 查询单个任务
        POST
      • 查询任务列表
        POST
  • Luma视频接口
    • 视频生成
      POST
    • 视频扩展
      POST
    • 任务查询
      GET
  • 可灵API(官方接口)
    • 图像生成
      POST
    • 文生视频
      POST
    • 图生视频
      POST
    • 任务查询
      GET
  • suno
    • Suno 歌词生成
      POST
    • Suno 简单模式
      POST
    • Suno 进阶模式
      POST
    • suno 参考音乐模式
      POST
    • Suno 获取歌词
      GET
    • Suno 获取音乐
      GET
    • Suno 历史记录
      GET
    • Suno 用户删除记录
      DELETE
  1. 逆向

查询任务列表

POST
/runway/list

请求参数

Query 参数
page
integer 
可选
limit
integer 
可选
Header 参数
Authorization
string 
必需
默认值:
{{Authorization}}

示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/runway/list?page&limit' \
--header 'Authorization;'

返回响应

🟢200成功
application/json
Body
code
integer 
必需
msg
string 
必需
data
object 
必需
total
integer 
必需
list
array[object (RunwayTask) {12}] 
必需
示例
{
    "code": 0,
    "msg": "string",
    "data": {
        "total": 0,
        "list": [
            {
                "task_id": "string",
                "status": "string",
                "prompt": "string",
                "prompt_en": "string",
                "video_url": "string",
                "poster": "string",
                "last_frame": "string",
                "msg": null,
                "point": "string",
                "refund": "string",
                "create_time": "string",
                "update_time": "string"
            }
        ]
    }
}
修改于 2024-11-18 15:28:21
上一页
查询单个任务
下一页
视频生成
Built with