
🇨🇳 Chinese

🇨🇳 Chinese
- OpenAI
- Anthropic
- Suno(音乐)
- Udio(音乐)
- Midjourney API文档(生图)
- Flux(生图)
- Recraft(生图)
- Ideogram(生图)
- Luma(视频)
- Runway(视频)
- PIKA(视频)
- 可灵API(官方接口)
- Replicate 通用接口
- MiniMax海螺(视频)
feed-获取任务
POST
/runway/feed
Last modified:2024-11-06 15:19:30
DANGER
TIP
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
string
optional
Header Params
string
optional
Authorization
string
optional
Default:
{{YOUR_API_KEY}}
Body Params application/json
task_id
string
任务ID
Example:
573772da-c2ec-4a60-987f-80b5ecc79b20
Example
{
"task_id": "573772da-c2ec-4a60-987f-80b5ecc79b20"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '/runway/feed' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"task_id": "573772da-c2ec-4a60-987f-80b5ecc79b20"
}'
Responses
🟢200成功
application/json
Body
code
integer
required
msg
string
required
data
object
required
task_id
string
任务ID
status
enum<string>
状态
Allowed values:
0123
Default:
0
prompt
string
描述词
prompt_en
string
英文描述词
video_url
string
生成的视频链接
poster
string
封面(一般为首帧)
last_frame
string
尾帧
msg
null
错误信息
point
string
任务扣除点数
refund
string
是否退款(状态2均会退款)
Default:
0
Examples:
01
create_time
string
任务创建时间
update_time
string
任务更新时间
exec_time
number
required
Examples
{
"code": 200,
"msg": "成功",
"data": {
"task_id": "573772da-c2ec-4a60-987f-80b5ecc79b20",
"status": "3",
"prompt": "一只小猫",
"prompt_en": "A little cat",
"video_url": "http://cdn.duomiapi.com/attachments/video/runway/20240822/bac2acce179f63bafa7d6597028afe39.mp4",
"poster": "http://cdn.duomiapi.com/attachments/video/runway/20240822/50201c7893f43cb7606d0b0c13ad5d6a.png",
"last_frame": "http://cdn.duomiapi.com/attachments/video/runway/20240822/426336fb8f95ea386af5ca82e0c17a06.png",
"msg": null,
"point": "200",
"refund": "0",
"create_time": "1724313052",
"update_time": "1724313343"
},
"exec_time": 0.028943,
"ip": "171.214.61.54"
}
Modified at 2024-11-06 15:19:30