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

# Get Auth Type



## OpenAPI

````yaml GET /auth/type
openapi: 3.1.0
info:
  title: Onyx API
  description: Onyx API for AI-powered enterprise search and chat
  version: Development
servers:
  - url: https://cloud.onyx.app/api
security: []
paths:
  /auth/type:
    get:
      tags:
        - public
      summary: Get Auth Type
      operationId: get_auth_type
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthTypeResponse'
components:
  schemas:
    AuthTypeResponse:
      properties:
        auth_type:
          $ref: '#/components/schemas/AuthType'
        requires_verification:
          type: boolean
          title: Requires Verification
        anonymous_user_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Anonymous User Enabled
        password_min_length:
          type: integer
          title: Password Min Length
      type: object
      required:
        - auth_type
        - requires_verification
        - password_min_length
      title: AuthTypeResponse
    AuthType:
      type: string
      enum:
        - disabled
        - basic
        - google_oauth
        - oidc
        - saml
        - cloud
      title: AuthType

````