---
title: "Retrieves a list of nodes"
method: GET
path: "/nodes"
tags: ["Nodes"]
---

# Retrieves a list of nodes

`GET /nodes`

Returns a paginated list of nodes across all publishers.

## Query parameters

- `page` integer
- `limit` integer
- `include_banned` boolean

## Response `200`

A paginated list of nodes

- object
  - `total` integer — Total number of nodes available
  - `nodes` Node[]
    - `id` string — The unique identifier of the node.
    - `name` string — The display name of the node.
    - `category` string — The category 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'
    - `status_detail` string — The status detail of the node.
  - `page` integer — Current page number
  - `limit` integer — Maximum number of nodes per page
  - `totalPages` integer — Total number of pages available

## Other responses

- `400` — Invalid input, object invalid
- `404` — Not found
- `500` — Internal server error

## Changes

- **2024-06-15** `65d1ad59d1ca` — 2 info
  - added the optional property `nodes/items/category` to the response with the `200` status
  - added the optional property `nodes/items/status_detail` to the response with the `200` status
- **2024-06-14** `9c9567cc3e15` — 2 info
  - added the optional property `nodes/items/latest_version/status` to the response with the `200` status
  - removed the `NodeStatusPending` enum value from the `nodes/items/status` response property for the response status `200`
- **2024-06-14** `e31c2cf0f0fb` — 1 info
  - added the new optional `query` request parameter `include_banned`
- **2024-06-13** `e10d71338a88` — 1 info
  - added the optional property `nodes/items/status` to the response with the `200` status
- **2024-05-23** `9d088b2401a5` — 10 warning
  - deleted the `query` request parameter `include_banned`
  - deleted the `query` request parameter `latest`
  - deleted the `query` request parameter `timestamp`
  - removed the optional property `nodes/items/category` from the response with the `200` status
  - …6 more

[Change history](https://skmtc.dev/comfy-org/apis/comfy-api/changes/nodes/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/65d1ad59d1ca/schema)
