GET
/
nodes
/
{nodeId}
/
versions
/
{versionId}
Retrieve a specific version of a node
curl --request GET \
  --url https://api.comfy.org/nodes/{nodeId}/versions/{versionId}
{
  "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
versionId
string
required

The version of the node. (Not a UUID).

Response

200
application/json

Detailed information about a specific node version

The response is of type object.