Skip to content

Comfy Get

GET
/api/comfy/{path}
curl --request GET \
--url https://example.com/api/comfy/example \
--header 'Authorization: Bearer <token>'

Read-only passthrough for Comfy discovery endpoints: models, queue, object_info, history, etc.

provider picks the node to ask (see GET /api/providers); without it the answer comes from the default node. On a multi-node install that distinction is the whole point: each node has its own model files, so a checkpoint list read from the wrong node says a file is there when the node you are about to submit to has never seen it.

path
required
Path
string
provider
Any of:
string

Successful Response

Media typeapplication/json
Response Comfy Get Api Comfy Path Get
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}