> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comfy.org/llms.txt
> Use this file to discover all available pages before exploring further.

# API 개요

## 개요

커스텀 노드 레지스트리는 다음과 같은 구조를 따릅니다.

```mermaid theme={null}
erDiagram
    PUBLISHER {
        string id PK
    }

    USER {
        string id PK
        string name
        string publisher_id FK
    }

    CUSTOM_NODE {
        string id PK
        string name
        string publisher_id FK
    }

    NODE_VERSION {
        string id PK
        string version
        string node_id FK
    }

    PUBLISHER ||--o{ USER: "다수 보유"
    PUBLISHER ||--o{ CUSTOM_NODE: "다수 보유"
    CUSTOM_NODE ||--o{ NODE_VERSION: "다수 보유"
```

## 자주 사용하는 API

* **모든 노드 목록 조회** [API](/ko/registry/api-reference/nodes/retrieves-a-list-of-nodes)
* **노드 설치** [API](/ko/registry/api-reference/nodes/returns-a-node-version-to-be-installed)
