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

# 简介

> 示例部分，用于展示API端点

<Note>
  如果您不打算构建API参考文档，您可以删除此部分，通过移除api-reference文件夹。
</Note>

## Welcome

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

<Card title="Plant Store Endpoints" icon="leaf" href="https://github.com/mintlify/starter/blob/main/api-reference/openapi.json">
  View the OpenAPI specification file
</Card>

## Authentication

All API endpoints are authenticated using Bearer tokens and picked up from the specification file.

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