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

# List authentication providers

> Returns a list of all authentication providers enabled on this Reactive Resume instance, along with their display names. Possible providers include password-based credentials, Google, GitHub, LinkedIn, and custom OAuth. No authentication required.



## OpenAPI

````yaml /spec.json get /auth/providers
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.1.0
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /auth/providers:
    get:
      tags:
        - Authentication
      summary: List authentication providers
      description: >-
        Returns a list of all authentication providers enabled on this Reactive
        Resume instance, along with their display names. Possible providers
        include password-based credentials, Google, GitHub, LinkedIn, and custom
        OAuth. No authentication required.
      operationId: listAuthProviders
      responses:
        '200':
          description: >-
            A map of enabled authentication provider identifiers to their
            display names.
          content:
            application/json:
              schema:
                anyOf:
                  - {}
                  - not: {}
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````