API 文档

目录 API

读取搜索、分类、开发者和详情页使用的同一组规范化插件记录。

GET/api/pluginsapplication/json

获取当前目录数据

request.sh公开 endpoint
curl -s https://deepseekplugins.org/api/plugins

应用通过短时服务器缓存刷新公开社区 registry。上游响应不可用、格式错误或记录数量异常时,endpoint 会回退到较小的本地核验快照,并在响应中报告该状态。

发现数据

使用方必须保留来源和回退提示。目录记录不能被表达为背书、安全结论、兼容保证或安装成功承诺。

SCHEMAcatalog_response.jsonnormalized

响应结构

example.json字段可能为 null
{
  "plugins": [{
    "name": "dsh-example",
    "owner": "github-owner",
    "category": "tools",
    "description": "Example description",
    "install": "dsh plugin --profile web add github:github-owner/dsh-example",
    "npm": null,
    "stars": 0,
    "updatedAt": null,
    "source": "registry"
  }],
  "sourceCount": 249,
  "updated": "2026-08-14",
  "isLive": true,
  "notice": "Live community registry loaded..."
}
plugins通过服务器验证的规范化插件记录。
sourceCount来源提供的总数;缺失时使用通过验证的记录数。
updated来源或本地回退报告的目录快照日期。
isLive上游 registry 本次刷新通过验证时为 true
notice供 UI 展示的来源与回退状态原文。
NOTESconsumer_contract.md先审查

使用合同与限制

  • 以不区分大小写的 owner/name 组合标识记录。
  • forks、language、license 和 timestamps 等仓库增强字段可能为空。
  • 安装前打开仓库;权限、兼容、设置、配置和移除以仓库为准。
  • 合理缓存;公开 endpoint 不承诺 uptime、rate limit 或长期 schema 稳定。
  • 展示目录记录时,链接回插件详情或来源仓库。