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

> Lists red-team findings across your organization, optionally filtered by target and lifecycle status. Defaults to ACTIVE findings. Results use offset pagination and include a total count.



## OpenAPI

````yaml /openapi.json get /v1/findings
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API allows you to programmatically trigger assessments
    and tasks, browse targets and findings, and manage finding triage state.
    Authenticate using a Bearer API key generated from the MindFort dashboard.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/findings:
    get:
      tags:
        - Findings
      summary: List Findings
      description: >-
        Lists red-team findings across your organization, optionally filtered by
        target and lifecycle status. Defaults to ACTIVE findings. Results use
        offset pagination and include a total count.
      operationId: listFindings
      parameters:
        - name: target_id
          in: query
          required: false
          description: Optional target UUID to filter findings
          schema:
            type: string
            format: uuid
        - name: assessment_id
          in: query
          required: false
          description: Filter findings to a specific assessment run
          schema:
            type: string
            format: uuid
        - name: exclude_secured
          in: query
          required: false
          description: When true, omit informational secured probe findings (severity info)
          schema:
            type: boolean
            default: false
        - name: severity
          in: query
          required: false
          description: Filter by severity
          schema:
            type: string
            enum:
              - critical
              - high
              - medium
              - low
              - info
        - name: status
          in: query
          required: false
          description: Filter by finding lifecycle status
          schema:
            type: string
            enum:
              - ACTIVE
              - RESOLVED
              - ARCHIVED
            default: ACTIVE
        - name: sort_by
          in: query
          required: false
          description: Sort mode for results
          schema:
            type: string
            enum:
              - severity
              - created_at
            default: severity
        - name: limit
          in: query
          required: false
          description: Maximum number of findings to return
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 25
        - name: offset
          in: query
          required: false
          description: Number of records to skip for offset pagination
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Findings returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFindingsResponse'
        '400':
          description: >-
            Invalid target_id, assessment_id, exclude_secured, severity, status,
            sort_by, limit, or offset
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized – missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ListFindingsResponse:
      type: object
      properties:
        findings:
          type: array
          items:
            $ref: '#/components/schemas/ActiveFindingSummary'
        total:
          type: integer
          description: Total findings matching the query
        limit:
          type: integer
          description: Maximum findings returned
        offset:
          type: integer
          description: Number of findings skipped
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
    ActiveFindingSummary:
      type: object
      description: Summary fields returned by the organization-wide findings list endpoint.
      properties:
        id:
          type: string
          format: uuid
          description: UUID of the finding
        title:
          type:
            - string
            - 'null'
          description: Finding title
        severity:
          type:
            - string
            - 'null'
          enum:
            - critical
            - high
            - medium
            - low
            - info
            - null
          description: Finding severity
        severity_score:
          type:
            - number
            - 'null'
          description: Numeric severity score
        status:
          type: string
          enum:
            - ACTIVE
            - RESOLVED
            - ARCHIVED
          description: Finding lifecycle status
        created_at:
          type: string
          format: date-time
          description: Finding creation timestamp
        target_id:
          type: string
          format: uuid
          description: UUID of the target this finding belongs to
      required:
        - id
        - status
        - created_at
        - target_id
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````