# 获取聊天机器人

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v1/get-chatbots:
    get:
      summary: 获取聊天机器人
      deprecated: false
      description: |+
        获取聊天机器人 API 端点允许您检索与您的 API 密钥关联的所有聊天机器人的列表。

      tags: []
      parameters:
        - name: Authorization
          in: header
          description: 用于验证 API 请求的密钥。
          required: true
          example: ' Bearer <Your-Secret-Key>'
          schema:
            type: string
        - name: Accept
          in: header
          description: 接受的响应内容类型。
          required: true
          example: application/json
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apifox-orders: []
              example: 返回包含每个聊天机器人参数的数组。
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: ''
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4195807/apis/api-157482422-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://www.chatbase.co
    description: 正式环境
security: []

```
