> ## 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.

# List All Configs

> GET /configs — MINOR 9 (wave-1 1B/1C fix): {"kinds": {kind: <active-row-
summary>|null for all five kinds}} (plan shape). Every kind is lazily
seeded on first read (app.v2.config_registry.get_config), so in practice
no value is ever null — the `|null` in the shape is defensive typing, not
an observed state.



## OpenAPI

````yaml /openapi.json get /v1/configs
openapi: 3.1.0
info:
  description: Causeloop Platform Backend
  title: Causeloop API
  version: 1.0.0
servers: []
security: []
paths:
  /v1/configs:
    get:
      tags:
        - configs
      summary: List All Configs
      description: >-
        GET /configs — MINOR 9 (wave-1 1B/1C fix): {"kinds": {kind: <active-row-

        summary>|null for all five kinds}} (plan shape). Every kind is lazily

        seeded on first read (app.v2.config_registry.get_config), so in practice

        no value is ever null — the `|null` in the shape is defensive typing,
        not

        an observed state.
      operationId: list_all_configs_v1_configs_get
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      scheme: bearer
      type: http

````