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

# 获取用户列表

> 获取用户列表。



## OpenAPI

````yaml openapi/zh/apollo.json GET /apollo/users/search
openapi: 3.0.3
info:
  title: Apollo API
  version: 1.0.0
  description: 通过 AIsa 统一网关公开的 Apollo API 端点。
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - BearerAuth: []
paths:
  /apollo/users/search:
    get:
      summary: 获取用户列表
      description: 获取用户列表。需要主 API 密钥。
      operationId: get_apollo_users_search
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
          description: 页码。
        - name: per_page
          in: query
          required: false
          schema:
            type: integer
          description: 每页结果数。
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      type: string
                    description: 用户（如返回）。
                  pagination:
                    type: object
                    description: 分页元数据（返回时）。
        '400':
          description: 错误请求
        '401':
          description: 未授权
        '429':
          description: 超出速率限制
        '500':
          description: 内部服务器错误
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````