# 获取某项设置

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/admin/setting/get:
    get:
      summary: 获取某项设置
      deprecated: false
      description: ''
      tags:
        - admin/setting
        - admin/setting
        - alist Copy/admin/setting
      parameters:
        - name: keys
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: key
          in: query
          description: ''
          required: false
          example: hide_files
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: false
          example: '{{alist_token}}'
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    title: 状态码
                  message:
                    type: string
                    title: 信息
                  data:
                    type: object
                    properties:
                      key:
                        type: string
                        title: 键
                      value:
                        type: string
                        title: 值
                      help:
                        type: string
                        title: 帮助信息
                      type:
                        type: string
                        title: 类型
                        description: string, number, bool, select
                      options:
                        type: string
                        title: 选项
                      group:
                        type: integer
                        title: 分组
                      flag:
                        type: integer
                        title: 标志
                        description: 0 = public, 1 = private, 2 = readonly, 3 = deprecated
                    required:
                      - key
                      - value
                      - help
                      - type
                      - options
                      - group
                      - flag
                    title: ''
                    x-apifox-orders:
                      - key
                      - value
                      - help
                      - type
                      - options
                      - group
                      - flag
                required:
                  - code
                  - message
                  - data
                title: ''
                x-apifox-orders:
                  - code
                  - message
                  - data
              example:
                code: 200
                message: success
                data:
                  key: hide_files
                  value: /\/README.md/i
                  help: ''
                  type: text
                  options: ''
                  group: 4
                  flag: 0
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: admin/setting
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/6849786/apis/api-327955456-run
components:
  schemas: {}
  securitySchemes: {}
servers: []
security: []

```
