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

# Get Config Comments

> Retrieves comments associated with configuration fields.



## OpenAPI

````yaml /api/swagger.json get /config/comments
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /config/comments:
    get:
      tags:
        - Config
      summary: Get Config Comments
      description: Retrieves comments associated with configuration fields.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handlers.getConfigCommentsResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getConfigCommentsResponse:
      type: object
      properties:
        comments:
          type: object
          additionalProperties:
            type: string
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````