> ## 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.

# 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: "has many"
    PUBLISHER ||--o{ CUSTOM_NODE: "has many"
    CUSTOM_NODE ||--o{ NODE_VERSION: "has many"
```

## 常用 API

* **列出所有节点** [API](/zh/registry/api-reference/nodes/retrieves-a-list-of-nodes)
* **安装节点** [API](/zh/registry/api-reference/nodes/returns-a-node-version-to-be-installed)
