Skip to main content
GET
/
v1
/
comfyui-workflows
/
{owner}
/
{slug}
/
runs
List runs for a ComfyUI workflow
curl --request GET \
  --url https://api.runflow.io/v1/comfyui-workflows/{owner}/{slug}/runs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    "<unknown>"
  ],
  "first": "<string>",
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Organization-Id
string | null

Path Parameters

owner
string
required
slug
string
required

Query Parameters

q
string | null
sort_by
string | null
limit
integer
default:25
Required range: 1 <= x <= 100
embed
string | null

Response

Successful Response

Response envelope for cursor-paginated search results.

Contains the page of items plus first/next/previous pagination links. Concrete entity validators should subclass as::

class SearchValidator(SearchResponse["FullValidator"]):
pass

to produce a proper OpenAPI schema with typed items.

items
any[]
required
first
string | null
next
string | null
previous
string | null