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

> List tested attack paths and scenarios with their status, latest result, last run time, and active related findings.



## OpenAPI

````yaml /openapi.json get /v1/coverage
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:
    get:
      tags:
        - Coverage
      summary: List Coverage Checks
      description: >-
        List tested attack paths and scenarios with their status, latest result,
        last run time, and active related findings.
      operationId: listCoverageChecks
      parameters:
        - name: target_id
          in: query
          required: false
          description: Only return checks for this target in the caller organization.
          schema:
            type: string
            format: uuid
        - name: status
          in: query
          required: false
          description: Repeat to include multiple coverage states.
          schema:
            type: array
            uniqueItems: true
            items:
              type: string
              enum:
                - not_run
                - in_progress
                - covered
                - failing
                - incomplete
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 500
            default: 100
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Coverage checks returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicCoverageCheckList'
components:
  schemas:
    PublicCoverageCheckList:
      type: object
      required:
        - checks
        - total
        - limit
        - offset
        - next_cursor
      properties:
        checks:
          type: array
          items:
            $ref: '#/components/schemas/PublicCoverageCheck'
        total:
          type: integer
          minimum: 0
        limit:
          type: integer
          minimum: 1
          maximum: 500
        offset:
          type: integer
          minimum: 0
        next_cursor:
          type:
            - string
            - 'null'
      additionalProperties: false
    PublicCoverageCheck:
      type: object
      required:
        - id
        - target_id
        - team_slug
        - title
        - coverage
        - revision
        - created_at
        - updated_at
        - run_count
        - last_run_at
        - status
        - latest_run
        - related_findings
      properties:
        id:
          type: string
          format: uuid
        target_id:
          type: string
          format: uuid
        team_slug:
          type: string
        title:
          type: string
        coverage:
          type: string
          description: Attack path or scenarios tested by this check.
        revision:
          type: integer
          minimum: 1
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        run_count:
          type: integer
          minimum: 0
        last_run_at:
          type:
            - string
            - 'null'
          format: date-time
          description: >-
            Most recent started or completed run time, including earlier history
            while a new run is pending.
        status:
          type: string
          enum:
            - not_run
            - in_progress
            - covered
            - failing
            - incomplete
        latest_run:
          anyOf:
            - $ref: '#/components/schemas/PublicCoverageRun'
            - type: 'null'
        related_findings:
          type: array
          description: Distinct active findings linked across the check's full run history.
          items:
            $ref: '#/components/schemas/PublicCoverageFinding'
      additionalProperties: false
    PublicCoverageRun:
      type: object
      required:
        - id
        - assessment_id
        - completion_state
        - customer_summary
        - started_at
        - completed_at
      properties:
        id:
          type: string
          format: uuid
        assessment_id:
          type: string
          format: uuid
        completion_state:
          type: string
          enum:
            - pending
            - running
            - complete
            - incomplete
        customer_summary:
          type:
            - string
            - 'null'
          description: Customer-safe summary of the latest coverage run.
        started_at:
          type:
            - string
            - 'null'
          format: date-time
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
      additionalProperties: false
    PublicCoverageFinding:
      type: object
      required:
        - id
        - title
        - severity
        - status
      properties:
        id:
          type: string
          format: uuid
        title:
          type:
            - string
            - 'null'
        severity:
          type:
            - string
            - 'null'
        status:
          type: string
          const: ACTIVE
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````