curl --request GET \
--url https://cloud.comfy.org/api/queue \
--header 'X-API-Key: <api-key>'{
"queue_running": [
"<array>"
],
"queue_pending": [
"<array>"
]
}Returns information about running and pending items in the queue
curl --request GET \
--url https://cloud.comfy.org/api/queue \
--header 'X-API-Key: <api-key>'{
"queue_running": [
"<array>"
],
"queue_pending": [
"<array>"
]
}API key authentication. Generate an API key from your account settings at https://comfy.org/account. Pass the key in the X-API-Key header.
Success
Queue information with pending and running jobs
Array of currently running job items
Queue item tuple format: [job_number, prompt_id, workflow_json, output_node_ids, metadata]
Array of pending job items (ordered by creation time, oldest first)
Queue item tuple format: [job_number, prompt_id, workflow_json, output_node_ids, metadata]