> ## 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 Secure Anchor Coverage

> Get aggregate secure-anchor coverage counts, recertification progress, team breakdown, and target/team matrix for the organization or one target.



## OpenAPI

````yaml /openapi.json get /v1/secure-anchors/coverage
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/secure-anchors/coverage:
    get:
      tags:
        - Coverage
        - Metrics
      summary: Get Secure Anchor Coverage
      description: >-
        Get aggregate secure-anchor coverage counts, recertification progress,
        team breakdown, and target/team matrix for the organization or one
        target.
      operationId: getSecureAnchorCoverage
      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
        - recertified
        - up_next
        - needs_attention
        - failing
        - recertified_pct
        - counts
        - by_team
        - matrix
      properties:
        total_checks:
          type: integer
          minimum: 0
          description: >-
            Active secure-anchor count at the instant this rollup is queried. It
            equals passing + failing + blocked + untested; a separately issued
            list request can differ if anchors change between calls.
        recertified:
          type: integer
          minimum: 0
        up_next:
          type: integer
          minimum: 0
        needs_attention:
          type: integer
          minimum: 0
        failing:
          type: integer
          minimum: 0
        recertified_pct:
          type: integer
          minimum: 0
          maximum: 100
        last_recertified_at:
          type:
            - string
            - 'null'
          format: date-time
          description: >-
            Freshness watermark: the newest coverage evaluation time among the
            active anchors included in this rollup, or null if none were tested.
        counts:
          $ref: '#/components/schemas/PublicCoverageOutcomeCounts'
        by_team:
          type: array
          items:
            $ref: '#/components/schemas/PublicCoverageTeamBreakdown'
        matrix:
          type: array
          items:
            $ref: '#/components/schemas/PublicCoverageMatrixCell'
      additionalProperties: false
    PublicCoverageOutcomeCounts:
      type: object
      required:
        - passing
        - failing
        - blocked
        - untested
      properties:
        passing:
          type: integer
          minimum: 0
        failing:
          type: integer
          minimum: 0
        blocked:
          type: integer
          minimum: 0
        untested:
          type: integer
          minimum: 0
      additionalProperties: false
    PublicCoverageTeamBreakdown:
      type: object
      required:
        - team_slug
        - counts
      properties:
        team_slug:
          type: string
        counts:
          $ref: '#/components/schemas/PublicCoverageOutcomeCounts'
      additionalProperties: false
    PublicCoverageMatrixCell:
      type: object
      required:
        - target_id
        - team_slug
        - counts
      properties:
        target_id:
          type: string
          format: uuid
        team_slug:
          type: string
        counts:
          $ref: '#/components/schemas/PublicCoverageOutcomeCounts'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````