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

# Get App Auth Settings

> Get app sign-in settings for a project.



## OpenAPI

````yaml GET /orgs/{org_id}/projects/{project_id}/auth
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/projects/{project_id}/auth:
    get:
      tags:
        - projects
      description: Get app sign-in settings for a project.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: project_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: App auth settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectAuthSettings'
        '403':
          description: Insufficient permissions
      security:
        - bearer_auth: []
components:
  schemas:
    ProjectAuthSettings:
      type: object
      description: Full app-auth configuration for a project. Drives the settings UI.
      required:
        - enabled
        - providers
      properties:
        enabled:
          type: boolean
          description: >-
            Master switch: whether the deployed app requires end-user sign-in at
            all.

            When false the app is public and `providers` is moot until it's
            turned on.
        providers:
          type: array
          items:
            $ref: '#/components/schemas/AuthProviderState'
          description: >-
            Every known sign-in method with its current state, in a stable
            order.
    AuthProviderState:
      type: object
      description: State of a single sign-in method on the settings screen.
      required:
        - provider
        - enabled
        - configured
      properties:
        configured:
          type: boolean
          description: >-
            Whether provider-specific settings (e.g. a bring-your-own OAuth app)
            have

            been supplied. `false` means the method runs on Timbal's defaults.
        enabled:
          type: boolean
          description: Whether end users can sign in with this method.
        provider:
          type: string
          description: Provider key (for example `email`, `google`, `microsoft`, `github`).
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````