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

# Get OAuth providers

> Returns which OAuth authentication providers are enabled (GitHub, Google, Cognito, Microsoft) and whether email/password auth is available



## OpenAPI

````yaml api-docs/app-team/auth.json get /v1/auth/providers
openapi: 3.1.1
info:
  title: Auth API
  version: 1.0.0
  description: >-
    Auth API supporting the k0rdent Enterprise authentication and authorization
    service
servers:
  - url: http://localhost:8000
    description: Local Development
security: []
paths:
  /v1/auth/providers:
    get:
      tags:
        - Providers
      summary: Get OAuth providers
      description: >-
        Returns which OAuth authentication providers are enabled (GitHub,
        Google, Cognito, Microsoft) and whether email/password auth is available
      responses:
        '200':
          description: Available authentication providers
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      emailPassword:
                        type: boolean
                      github:
                        type: boolean
                      google:
                        type: boolean
                      cognito:
                        type: boolean
                      microsoft:
                        type: boolean
                      genericOAuth:
                        type: array
                        items:
                          type: object
                          properties:
                            providerId:
                              type: string
                            name:
                              type: string
                          required:
                            - providerId
                            - name
                    required:
                      - emailPassword
                      - github
                      - google
                      - cognito
                      - microsoft
                      - genericOAuth
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - data
                  - meta

````