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

# List Providers

> Return the names of OAuth providers currently enabled on the server, such as GitHub and GitLab. Unauthenticated; the frontend uses it to render login buttons.



## OpenAPI

````yaml /openapi.json get /api/v1/auth/providers
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /api/v1/auth/providers:
    get:
      tags:
        - auth
      summary: List Providers
      description: >-
        Return the names of OAuth providers currently enabled on the server,
        such as GitHub and GitLab. Unauthenticated; the frontend uses it to
        render login buttons.
      operationId: list_providers_api_v1_auth_providers_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProvidersResponse'
          description: Successful Response
components:
  schemas:
    ProvidersResponse:
      properties:
        providers:
          items:
            type: string
          title: Providers
          type: array
      required:
        - providers
      title: ProvidersResponse
      type: object

````