- Instructions for Use
- About nodeInfoList
- About Enterprise ComfyUI API
- Native ComfyUI API Integration Guide
- Start ComfyUI Task 1 - BasicPOST
- Start ComfyUI Task 2 - AdvancedPOST
- Start AI App TaskPOST
- Get Workflow JSONPOST
- Check Task StatusPOST
- Check Task OutputPOST
- Cancel ComfyUI TaskPOST
- Get Account InformationPOST
- Upload Resource(image\video\audio)POST
- Upload LoraPOST
- Get Webhook Event DetailsPOST
- Resend Specific Webhook EventPOST
Check Task Output
POST
/task/openapi/outputs
Request
Authorization
Header Params
Host
string
required
Example:
www.runninghub.ai
Body Params application/json
apiKey
string
required
Example:
{{apiKey}}
taskId
string
optional
Example:
1904152026220003329
Example
{
"apiKey": "{{apiKey}}",
"taskId": "1904152026220003329"
}
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 --request POST 'https://www.runninghub.ai/task/openapi/outputs' \
--header 'Host: www.runninghub.ai' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiKey": "Please enter your own apiKey and keep it safe.",
"taskId": "1904152026220003329"
}'
Responses
🟢200成功
application/json
Body
code
integer
optional
msg
string
optional
data
null
optional
Examples
{
"code": 0,
"msg": "success",
"data": [
{
"fileUrl": "https://rh-images.xiaoyaoyou.com/de0db6f2564c8697b07df55a77f07be9/output/ComfyUI_00033_hpgko_1742822929.png",
"fileType": "png",
"taskCostTime": "0",
"nodeId": "9"
}
]
}
Modified at 2025-03-26 11:20:46