> ## 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 Coverage Overview

> Get aggregate coverage-check counts, completion progress, team breakdown, and target/team matrix for the organization or one target. Covered, failing, incomplete, in-progress, and not-run checks remain distinct.



## OpenAPI

````yaml /openapi.json get /v1/coverage/overview
openapi: 3.1.0
info:
  title: MindFort API
  version: 1.0.0
  description: >-
    The MindFort Public API supports targets, Discovery, assessments, finding
    lifecycle and analytics, and reports. Informational non-vulnerable results
    are labeled `secured`.
servers:
  - url: https://api.mindfort.app
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/coverage/overview:
    get:
      tags:
        - Coverage
        - Metrics
      summary: Get Coverage Overview
      description: >-
        Get aggregate coverage-check counts, completion progress, team
        breakdown, and target/team matrix for the organization or one target.
        Covered, failing, incomplete, in-progress, and not-run checks remain
        distinct.
      operationId: getCoverageOverview
      parameters:
        - name: target_id
          in: query
          required: false
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Coverage overview returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicCoverageOverview'
components:
  schemas:
    PublicCoverageOverview:
      type: object
      required:
        - total_checks
        - tested_checks
        - completion_pct
        - counts
        - by_team
        - matrix
      properties:
        total_checks:
          type: integer
          minimum: 0
          description: Number of active coverage checks when this summary is requested.
        tested_checks:
          type: integer
          minimum: 0
        completion_pct:
          type: integer
          minimum: 0
          maximum: 100
        last_run_at:
          type:
            - string
            - 'null'
          format: date-time
          description: >-
            Most recent coverage run start or completion time, or null if no run
            has started.
        counts:
          $ref: '#/components/schemas/PublicCoverageStatusCounts'
        by_team:
          type: array
          items:
            $ref: '#/components/schemas/PublicCoverageTeamBreakdown'
        matrix:
          type: array
          items:
            $ref: '#/components/schemas/PublicCoverageMatrixCell'
      additionalProperties: false
    PublicCoverageStatusCounts:
      type: object
      required:
        - covered
        - failing
        - incomplete
        - in_progress
        - not_run
      properties:
        covered:
          type: integer
          minimum: 0
        failing:
          type: integer
          minimum: 0
        incomplete:
          type: integer
          minimum: 0
        in_progress:
          type: integer
          minimum: 0
        not_run:
          type: integer
          minimum: 0
      additionalProperties: false
    PublicCoverageTeamBreakdown:
      type: object
      required:
        - team_slug
        - tested_checks
        - counts
      properties:
        team_slug:
          type: string
        tested_checks:
          type: integer
          minimum: 0
        counts:
          $ref: '#/components/schemas/PublicCoverageStatusCounts'
      additionalProperties: false
    PublicCoverageMatrixCell:
      type: object
      required:
        - target_id
        - team_slug
        - tested_checks
        - counts
      properties:
        target_id:
          type: string
          format: uuid
        team_slug:
          type: string
        tested_checks:
          type: integer
          minimum: 0
        counts:
          $ref: '#/components/schemas/PublicCoverageStatusCounts'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````