# 获取api存储数据

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /admin/info:
    get:
      summary: 获取api存储数据
      deprecated: false
      description: 需要传入MSL-User的token鉴权
      tags:
        - 管理类
      parameters:
        - name: User-Agent
          in: header
          description: ''
          example: MSL API Test
          schema:
            type: string
            default: MSL API Test
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties: {}
                x-apifox-orders: []
          headers: {}
          x-apifox-name: 成功
      security:
        - bearer: []
      x-apifox-folder: 管理类
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/7956474/apis/api-429587284-run
components:
  schemas: {}
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers: []
security: []

```
