GET
/
nodes
/
{nodeId}
/
install
Returns a node version to be installed.
curl --request GET \
  --url https://api.comfy.org/nodes/{nodeId}/install
{
  "changelog": "<string>",
  "comfy_node_extract_status": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "dependencies": [
    "<string>"
  ],
  "deprecated": true,
  "downloadUrl": "<string>",
  "id": "<string>",
  "node_id": "<string>",
  "status": "NodeVersionStatusActive",
  "status_reason": "<string>",
  "supported_accelerators": [
    "<string>"
  ],
  "supported_comfyui_frontend_version": "<string>",
  "supported_comfyui_version": "<string>",
  "supported_os": [
    "<string>"
  ],
  "version": "<string>"
}

Path Parameters

nodeId
string
required

The unique identifier of the node.

Query Parameters

version
string

Specific version of the node to retrieve. If omitted, the latest version is returned.

Response

Node data returned successfully.

changelog
string

Summary of changes made in this version

comfy_node_extract_status
string

The status of comfy node extraction process.

createdAt
string<date-time>

The date and time the version was created.

dependencies
string[]

A list of pip dependencies required by the node.

deprecated
boolean

Indicates if this version is deprecated.

downloadUrl
string

[Output Only] URL to download this version of the node

id
string
node_id
string

The unique identifier of the node.

status
enum<string>
Available options:
NodeVersionStatusActive,
NodeVersionStatusDeleted,
NodeVersionStatusBanned,
NodeVersionStatusPending,
NodeVersionStatusFlagged
status_reason
string

The reason for the status change.

supported_accelerators
string[]

List of accelerators (e.g. CUDA, DirectML, ROCm) that this node supports

supported_comfyui_frontend_version
string

Supported versions of ComfyUI frontend

supported_comfyui_version
string

Supported versions of ComfyUI

supported_os
string[]

List of operating systems that this node supports

version
string

The version identifier, following semantic versioning. Must be unique for the node.