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

# Get v2loginproviders

> Login capabilities discovery. Returns available login methods and SSO providers.



## OpenAPI

````yaml /api-reference/swagger.yml get /v2/login/providers
openapi: 3.0.0
info:
  version: 1.0.0
  title: Prisme.ai APIs
  description: Prisme.ai APIs specifications
  termsOfService: https://www.prisme.ai/mentions-legales
  contact:
    name: Prisme.ai Support Team
    email: support@prisme.ai
    url: https://www.prisme.ai
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.eda.prisme.ai
  - url: http://localhost:3001
security:
  - BearerAuth: []
  - WorkspaceApiKeyAuth: []
  - BearerAuth: []
    WorkspaceApiKeyAuth: []
paths:
  /v2/login/providers:
    get:
      tags:
        - API Gateway
      description: >-
        Login capabilities discovery. Returns available login methods and SSO
        providers.
      operationId: getLoginProviders
      responses:
        '200':
          description: Success Response
          content:
            application/json:
              schema:
                type: object
                required:
                  - localSignin
                  - localSignup
                  - providers
                properties:
                  localSignin:
                    type: boolean
                    description: Whether local email/password signin is enabled
                  localSignup:
                    type: boolean
                    description: Whether local email/password signup is enabled
                  providers:
                    type: array
                    description: Globally available SSO providers
                    items:
                      type: object
                      required:
                        - slug
                        - type
                      properties:
                        slug:
                          type: string
                        type:
                          type: string
                        name:
                          type: string
                        icon:
                          type: string
                        meta:
                          type: object
      security: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    WorkspaceApiKeyAuth:
      type: apiKey
      in: header
      name: x-prismeai-api-key

````