KIE.AI
Chinese
  • English
  • Chinese
Chinese
  • English
  • Chinese
Support
Chinese
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
  1. Runway API
  • Runway API 快速开始
  • AI 视频生成回调
  • AI 视频扩展回调
  • Aleph 视频生成回调
  • 生成AI视频
    POST
  • 获取AI视频详情
    GET
  • 延长AI视频
    POST
  • 生成 Aleph 视频
    POST
  • 获取 Aleph 视频详情
    GET
Chinese
  • English
  • Chinese
Support
Chinese
  • English
  • Chinese
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
MarketVeo3.1 APISuno API4o Image APIFlux Kontext APIRunway API
Luma APIFile Upload APICommon API
  1. Runway API

获取AI视频详情

GET
/api/v1/runway/record-detail
获取AI生成视频任务的详细信息。

使用指南#

检查视频生成或延长任务的状态
在生成完成后访问视频URL
排查生成失败的问题

状态说明#

wait: 任务已提交但尚未排队
queueing: 任务正在处理队列中等待
generating: 视频生成正在进行中
success: 视频已成功生成
fail: 视频生成失败

开发者注意事项#

适用于标准视频生成和视频延长任务
对于延长任务,parentTaskId字段标识原始视频
视频链接有效期为14天,之后expireFlag将设置为1

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200
application/json
请求成功
Body

🔴500Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.kie.ai/api/v1/runway/record-detail?taskId=ee603959-debb-48d1-98c4-a6d1c717eba6' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "code": 200,
    "msg": "success",
    "data": {
        "taskId": "ee603959-debb-48d1-98c4-a6d1c717eba6",
        "parentTaskId": "",
        "generateParam": {
            "prompt": "一只蓬松的橙色猫咪在彩色房间里随着迪斯科灯光活力四射地跳舞",
            "imageUrl": "https://example.com/image.jpg",
            "expandPrompt": true
        },
        "state": "wait",
        "generateTime": "2023-08-15 14:30:45",
        "videoInfo": {
            "videoId": "485da89c-7fca-4340-8c04-101025b2ae71",
            "taskId": "ee603959-debb-48d1-98c4-a6d1c717eba6",
            "videoUrl": "https://file.com/k/xxxxxxx.mp4",
            "imageUrl": "https://file.com/m/xxxxxxxx.png"
        },
        "failCode": 400,
        "failMsg": "生成失败,请稍后重试。",
        "expireFlag": 0
    }
}
Previous
生成AI视频
Next
延长AI视频
Built with