> ## Documentation Index
> Fetch the complete documentation index at: https://dripart-feat-openapi-i18n.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 모든 Comfy 노드 나열



## OpenAPI

````yaml /openapi/registry.ko.yaml get /comfy-nodes
openapi: 3.0.2
info:
  title: Comfy API
  version: '1.0'
servers:
  - url: https://api.comfy.org
security: []
paths:
  /comfy-nodes:
    get:
      tags:
        - Registry
      summary: 모든 Comfy 노드 나열
      operationId: ListAllComfyNodes
      parameters:
        - in: query
          name: pageSize
          schema:
            default: 100
            type: integer
        - description: 페이지 번호 (1부터 시작하는 인덱스)
          in: query
          name: page
          schema:
            default: 1
            type: integer
        - description: 노드 ID로 필터
          in: query
          name: node_id
          schema:
            type: string
        - description: 노드 버전으로 필터
          in: query
          name: node_version
          schema:
            type: string
        - description: ComfyUI 노드 이름으로 필터
          in: query
          name: comfy_node_name
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  comfy_nodes:
                    items:
                      $ref: '#/components/schemas/ComfyNode'
                    type: array
                  total:
                    description: Comfy 노드의 총 개수
                    type: integer
                type: object
          description: 성공
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 잘못된 요청, 잘못된 입력 데이터.
        '401':
          description: 인증되지 않음
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 금지됨
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: 내부 서버 오류
components:
  schemas:
    ComfyNode:
      properties:
        category:
          description: 노드가 나열된 UI 카테고리로, 노드를 그룹화하는 데 사용됩니다.
          type: string
        comfy_node_name:
          description: 노드의 고유 식별자
          type: string
        deprecated:
          description: 노드가 지원 중단되었는지 나타냅니다. 지원 중단된 노드는 UI에서 숨겨집니다.
          type: boolean
        description:
          description: 노드의 기능 또는 목적에 대한 간략한 설명.
          type: string
        experimental:
          description: 노드가 실험적인지 나타냅니다. 변경 또는 제거될 수 있습니다.
          type: boolean
        function:
          description: 노드를 실행하기 위한 진입점 함수의 이름.
          type: string
        input_types:
          description: 입력 파라미터를 정의합니다.
          type: string
        output_is_list:
          description: 각 출력이 목록인지 나타내는 논리값.
          items:
            type: boolean
          type: array
        policy:
          $ref: '#/components/schemas/ComfyNodePolicy'
        return_names:
          description: 워크플로에서 명확성을 위한 출력 이름.
          type: string
        return_types:
          description: 노드가 생성하는 출력 유형을 지정합니다.
          type: string
      type: object
    ErrorResponse:
      properties:
        error:
          type: string
        message:
          type: string
      required:
        - error
        - message
      type: object
    ComfyNodePolicy:
      enum:
        - ComfyNodePolicyActive
        - ComfyNodePolicyBanned
        - ComfyNodePolicyLocalOnly
      type: string

````