> ## 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 preset comments

> Retrieves comments associated with presets.



## OpenAPI

````yaml /api/swagger.json get /presets/comments
openapi: 3.0.1
info:
  title: BLOOD-V3 API
  contact: {}
  version: 0.0.1
servers:
  - url: //localhost:50000/api/v1
security: []
paths:
  /presets/comments:
    get:
      tags:
        - Presets
      summary: Get preset comments
      description: Retrieves comments associated with presets.
      responses:
        '200':
          description: Preset comments
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.getPresetCommentsResponse'
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/handlers.ErrorResponse'
components:
  schemas:
    handlers.getPresetCommentsResponse:
      type: object
      properties:
        comments:
          type: object
          additionalProperties:
            type: string
    handlers.ErrorResponse:
      type: object
      properties:
        error:
          type: string

````