> ## 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 Patch Count

> Return the number of findings with a generated remediation patch.



## OpenAPI

````yaml /openapi.json get /v1/findings/patch-count
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/patch-count:
    get:
      tags:
        - Findings
      summary: Get Patch Count
      description: Return the number of findings with a generated remediation patch.
      operationId: getPatchCount
      responses:
        '200':
          description: Patch count returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicPatchCount'
components:
  schemas:
    PublicPatchCount:
      type: object
      required:
        - patched
      properties:
        patched:
          type: integer
          minimum: 0
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````