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

# 介绍

> 用于展示 API 端点的示例章节

<Note>
  如果你不打算构建 API 参考文档，可以通过移除 api-reference 文件夹删除本章节。
</Note>

## 欢迎

构建 API 文档有两种方式：[OpenAPI](https://mintlify.com/docs/api-playground/openapi/setup) 与 [MDX 组件](https://mintlify.com/docs/api-playground/mdx/configuration)。在本入门模板中，我们使用以下 OpenAPI 规范：

<Card title="植物商店端点" icon="leaf" href="https://github.com/mintlify/starter/blob/main/api-reference/openapi.json">
  查看 OpenAPI 规范文件
</Card>

## 认证

所有 API 端点均使用 Bearer token 进行认证，并从规范文件中自动读取配置。

```json theme={null}
"security": [
  {
    "bearerAuth": []
  }
]
```
