- 系统使用介绍
- API介绍
- 项目说明
- 导言
- 身份验证
- 发出请求
- 参数详情
- OpenAI
- 音乐接口
- 绘图接口
- 视频接口
- luma
- runway
- pixverse
- google-veo
- veo Copy
指定ID获取任务(免费)
POST
{{BASE_URL}}/runway/v1/feed
请求参数
Authorization
Header 参数
Authorization
string
可选
示例值:
Bearer {{YOUR_API_KEY}}
Body 参数application/json
task_id
string
必需
示例
{
"sourceBase64": "data:image/png;base64,xxx1",
"targetBase64": "data:image/png;base64,xxx2",
"accountFilter": {
"instanceId": "string"
},
"notifyHook": "string",
"state": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{BASE_URL}}/runway/v1/feed' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"sourceBase64": "data:image/png;base64,xxx1",
"targetBase64": "data:image/png;base64,xxx2",
"accountFilter": {
"instanceId": "string"
},
"notifyHook": "string",
"state": "string"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
task_id
string
必需
status
string
必需
prompt
string
必需
video_url
string
必需
msg
null
必需
point
string
必需
refund
string
必需
create_time
string
必需
update_time
string
必需
exec_time
number
必需
ip
string
必需
示例
{
"code": 200,
"msg": "成功",
"data": {
"task_id": "51925381-d713-4925-b6dc-e87de520f55c",
"status": "3",
"prompt": "",
"video_url": "http://source.wike.cc/attachments/video/pika/20240725/6329a70942f1b3def5fd2ba52f91eef8.mp4",
"msg": null,
"point": "0",
"refund": "0",
"create_time": "1721900427",
"update_time": "1721902010"
},
"exec_time": 0.022208,
"ip": "182.146.238.93"
}
修改于 2025-06-22 21:18:32