---
title: "Retrieve a specific node by ID"
method: GET
path: "/nodes/{nodeId}"
tags: ["Nodes"]
---

# Retrieve a specific node by ID

`GET /nodes/{nodeId}`

Returns the details of a specific node.

## Path parameters

- `nodeId` string, required

## Response `200`

Node details

- Node
  - `id` string — The unique identifier of the node.
  - `name` string — The display name of the node.
  - `description` string
  - `author` string
  - `license` string — The path to the LICENSE file in the node's repository.
  - `icon` string — URL to the node's icon.
  - `repository` string — URL to the node's repository.
  - `tags` string[]
  - `latest_version` NodeVersion
    - `id` string
    - `version` string — The version identifier, following semantic versioning. Must be unique for the node.
    - `createdAt` string, date-time — The date and time the version was created.
    - `changelog` string — Summary of changes made in this version
    - `dependencies` string[] — A list of pip dependencies required by the node.
    - `downloadUrl` string — [Output Only] URL to download this version of the node
    - `deprecated` boolean — Indicates if this version is deprecated.
    - `status` 'NodeVersionStatusActive' | 'NodeVersionStatusDeleted' | 'NodeVersionStatusBanned' | 'NodeVersionStatusPending'
  - `rating` number — The average rating of the node.
  - `downloads` integer — The number of downloads of the node.
  - `publisher` Publisher
    - `name` string
    - `id` string — The unique identifier for the publisher. It's akin to a username. Should be lowercase.
    - `description` string
    - `website` string
    - `support` string
    - `source_code_repo` string
    - `logo` string — URL to the publisher's logo.
    - `createdAt` string, date-time — The date and time the publisher was created.
    - `members` PublisherMember[] — A list of members in the publisher.
      - `id` string — The unique identifier for the publisher member.
      - `user` PublisherUser
        - `id` string — The unique id for this user.
        - `email` string — The email address for this user.
        - `name` string — The name for this user.
      - `role` string — The role of the user in the publisher.
  - `status` 'NodeStatusActive' | 'NodeStatusDeleted' | 'NodeStatusBanned'

## Other responses

- `403` — Forbidden
- `404` — Node not found
- `500` — Internal server error

## Changes

- **2024-06-14** `9c9567cc3e15` — 2 info
  - added the optional property `latest_version/status` to the response with the `200` status
  - removed the `NodeStatusPending` enum value from the `status` response property for the response status `200`
- **2024-06-13** `e10d71338a88` — 1 info
  - added the optional property `status` to the response with the `200` status
- **2024-05-23** `9d088b2401a5` — 7 warning
  - removed the optional property `category` from the response with the `200` status
  - removed the optional property `latest_version/node_id` from the response with the `200` status
  - removed the optional property `latest_version/status` from the response with the `200` status
  - removed the optional property `latest_version/status_reason` from the response with the `200` status
  - …3 more

[Change history](https://skmtc.dev/comfy-org/apis/comfy-api/changes/nodes/:nodeId/get.md)

---

[API](https://skmtc.dev/comfy-org/apis/comfy-api.md) · [All operations](https://skmtc.dev/comfy-org/apis/comfy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/comfy-org/comfy-api/revisions/9c9567cc3e15/schema)
