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

# Openid Configuration

> Return the standard OIDC Provider Metadata document (RFC 8414 / OIDC Core §4).

Allows any OIDC client to auto-discover endpoints and capabilities.



## OpenAPI

````yaml /openapi.json get /.well-known/openid-configuration
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /.well-known/openid-configuration:
    get:
      tags:
        - well-known
      summary: Openid Configuration
      description: >-
        Return the standard OIDC Provider Metadata document (RFC 8414 / OIDC
        Core §4).


        Allows any OIDC client to auto-discover endpoints and capabilities.
      operationId: openid_configuration__well_known_openid_configuration_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response

````