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

# Get Finding

> Retrieve full details for a single red-team finding, including its description, impact, evidence, reproduction approach, remediation advice, and current status.



## OpenAPI

````yaml /openapi.json get /v1/findings/{finding_id}
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/{finding_id}:
    get:
      tags:
        - Findings
      summary: Get Finding
      description: >-
        Retrieve full details for a single red-team finding, including its
        description, impact, evidence, reproduction approach, remediation
        advice, and current status.
      operationId: getFinding
      parameters:
        - name: finding_id
          in: path
          required: true
          description: UUID of the finding
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Finding returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FindingDetail'
        '400':
          description: Invalid finding_id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized – missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Finding not found
          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:
    FindingDetail:
      type: object
      description: Full active finding details returned by the get finding 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 workflow 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
        description:
          type:
            - string
            - 'null'
          description: Finding description
        impact:
          type:
            - string
            - 'null'
          description: Potential security impact
        evidence:
          type:
            - string
            - 'null'
          description: Evidence collected during testing
        approach:
          type:
            - string
            - 'null'
          description: Testing approach used to validate the finding
        remediation_advice:
          type:
            - string
            - 'null'
          description: Recommended remediation guidance
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
        request_id:
          type: string
          description: Unique request identifier for debugging
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````