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

# List Finding Comments

<Info>Required API key permission: `findings:read`.</Info>


## OpenAPI

````yaml /openapi.json get /v1/findings/{finding_id}/comments
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API supports targets, assessments, finding lifecycle and
    analytics, and reports. Public responses use positive field allowlists and
    call informational non-vulnerable results `secured`.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/findings/{finding_id}/comments:
    get:
      tags:
        - Findings
      summary: List Finding Comments
      operationId: listFindingComments
      parameters:
        - name: finding_id
          in: path
          required: true
          description: Finding UUID
          schema:
            type: string
            format: uuid
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicFindingComments'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Not permitted for this organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    PublicFindingComments:
      properties:
        finding_id:
          type: string
          format: uuid
          title: Finding Id
        comments:
          items:
            $ref: '#/components/schemas/PublicFindingComment'
          type: array
          title: Comments
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - finding_id
        - comments
        - total
        - limit
        - offset
      title: PublicFindingComments
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
    PublicFindingComment:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        finding_id:
          type: string
          format: uuid
          title: Finding Id
        finding_type:
          type: string
          const: red-team
          title: Finding Type
          default: red-team
        username:
          title: Username
          type:
            - string
            - 'null'
        profile_picture_url:
          title: Profile Picture Url
          type:
            - string
            - 'null'
        content:
          type: string
          title: Content
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - finding_id
        - content
        - created_at
        - updated_at
      title: PublicFindingComment
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````