> ## 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 Discovery Suggestions



## OpenAPI

````yaml /openapi.json get /v1/discovery/suggestions
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/discovery/suggestions:
    get:
      tags:
        - Discovery
      summary: List Discovery Suggestions
      operationId: listDiscoverySuggestions
      parameters:
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - pending
              - accepted
              - dismissed
              - superseded
            default: pending
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 200
            default: 100
        - name: cursor
          in: query
          required: false
          schema:
            type: string
            maxLength: 2048
      responses:
        '200':
          description: Discovery suggestions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicDiscoverySuggestionList'
components:
  schemas:
    PublicDiscoverySuggestionList:
      type: object
      properties:
        suggestions:
          type: array
          items:
            $ref: '#/components/schemas/PublicDiscoverySuggestion'
        total:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
        next_cursor:
          type:
            - string
            - 'null'
      required:
        - suggestions
        - total
        - limit
        - offset
        - next_cursor
      additionalProperties: false
    PublicDiscoverySuggestion:
      type: object
      properties:
        id:
          type: string
          format: uuid
        target_value:
          type: string
        canonical_target:
          type: string
        target_type:
          type: string
          enum:
            - web_app
            - api
            - network
        explanation:
          type: string
        status:
          type: string
          enum:
            - pending
            - accepted
            - dismissed
            - superseded
        accepted_target_id:
          type:
            - string
            - 'null'
          format: uuid
        first_suggested_at:
          type: string
          format: date-time
        last_suggested_at:
          type: string
          format: date-time
      required:
        - id
        - target_value
        - canonical_target
        - target_type
        - explanation
        - status
        - accepted_target_id
        - first_suggested_at
        - last_suggested_at
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key generated from the MindFort dashboard. Pass as `Authorization:
        Bearer <your-api-key>`.

````