- 系统介绍
- 系统优势
- 补充说明
- 辅助功能
- 按量计费
- 按次计费
- OpenMeta
- GPT 4o Image Generation
- Midjourney Proxy
- Midjourney Chat
- 即梦AI2.0生图
- Recraft Proxy
- Flux.1 Proxy
- SD Proxy
- SD Chat
- 可灵AI
- 谷歌Veo3 视频生成
- Runway-视频生成
- CogVideoX Proxy
- Runway Chat
- Luma Proxy
- Luma Chat
- Pika1.5 Proxy
- Pika1.5 Chat
- Domo Proxy
- 海绵音乐(音乐生成)
- Suno Proxy
- Suno Chat
- Udio Proxy
- Udio Chat
查询任务
开发环境
https://draw.openai-next.com
开发环境
https://draw.openai-next.com
GET
https://draw.openai-next.com
任务查询
请求参数
Path 参数
task_id
string
任务ID
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://draw.openai-next.com/suno/fetch/'
返回响应
🟢200成功
application/json
Body
id
string <uuid>
任务唯一标识符
示例值:
13db8785-77bc-4273-883b-e462f3e7ff52
status
enum<string>
任务当前状态
枚举值:
PENDINGRUNNINGSUCCEEDEDFAILED
示例值:
RUNNING
createdAt
string <date-time>
可选
示例值:
2024-11-15T03:34:51.751Z
progress
number
可选
>= 0<= 1
示例值:
0.275
output
array[string <uri>]
可选
示例值:
["https://storage.runwayml.com/generated_video_123456.mp4"]
failure
object (TaskFailure)
可选
code
string
错误代码
示例值:
INVALID_INPUT
message
string
错误描述
示例值:
输入图片格式不支持
示例
{
"id": "13db8785-77bc-4273-883b-e462f3e7ff52",
"status": "PENDING",
"createdAt": "2024-11-15T03:34:51.751Z",
"progress": 0.275,
"output": [
"https://storage.runwayml.com/generated_video_123456.mp4"
],
"failure": {
"code": "INVALID_INPUT",
"message": "输入图片格式不支持"
}
}
🟠400请求有误
🟠401没有权限
🔴500服务器错误