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

# Get config

> Public instance settings: which sign-in methods, registration paths, and features are enabled.



## OpenAPI

````yaml /openapi.json get /config
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /config:
    get:
      tags:
        - Config
      summary: Get config
      description: >-
        Public instance settings: which sign-in methods, registration paths, and
        features are enabled.
      operationId: getConfig
      responses:
        '200':
          description: Application settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Config'
      security: []
components:
  schemas:
    Config:
      type: object
      properties:
        disableRegistration:
          type: boolean
        disablePasswordRegistration:
          type: boolean
        disableEmailOtpSignIn:
          type: boolean
        disableWorkspaceCreation:
          type: boolean
        isDemoMode:
          type: boolean
        hasSmtp:
          type: boolean
        hasGithubSignIn:
          type: boolean
        hasGoogleSignIn:
          type: boolean
        hasDiscordSignIn:
          type: boolean
        hasCustomOAuth:
          type: boolean
        hasGuestAccess:
          type: boolean
        disableLoginForm:
          type: boolean
        customOAuthAutoLogin:
          type: boolean
        customOAuthLogoutUrl:
          type:
            - string
            - 'null'
        billingEnabled:
          type: boolean
      required:
        - disableRegistration
        - disablePasswordRegistration
        - disableEmailOtpSignIn
        - disableWorkspaceCreation
        - isDemoMode
        - hasSmtp
        - hasGithubSignIn
        - hasGoogleSignIn
        - hasDiscordSignIn
        - hasCustomOAuth
        - hasGuestAccess
        - disableLoginForm
        - customOAuthAutoLogin
        - customOAuthLogoutUrl
        - billingEnabled
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````