> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vistaly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List feedback

> List feedback that has been submitted to the organization. Feedback can be filtered by whether it has been processed (analyzed for insights and opportunities). Results are ordered newest-first and include a short text preview of each feedback entry.



## OpenAPI

````yaml https://api.vistaly.com/v1/swagger.json get /v1/feedback
openapi: 3.1.0
info:
  contact:
    email: support@vistaly.com
    name: Vistaly Support Team
  description: >-
    Vistaly's public API for interacting with our platform, enabling developers
    to integrate with various features such as feedback, cards, and system
    health.
  termsOfService: https://vistaly.com/terms-of-service
  title: Vistaly API
  version: '2025-06-21'
servers:
  - description: Production server
    url: https://api.vistaly.com
security: []
tags:
  - description: System-related endpoints to interact with the overall service.
    name: system
  - description: >-
      Endpoints related to card management, including the creation and
      modification of card metrics and related data.
    externalDocs:
      description: Learn more about Cards
      url: https://docs.vistaly.com/en/card-types/overview
    name: cards
  - description: >-
      Endpoints for handling insights data, such as user feedback and interview
      records.
    externalDocs:
      description: Learn more about Insights
      url: https://docs.vistaly.com/en/insights/overview
    name: insights
paths:
  /v1/feedback:
    get:
      tags:
        - feedback
      summary: List feedback
      description: >-
        List feedback that has been submitted to the organization. Feedback can
        be filtered by whether it has been processed (analyzed for insights and
        opportunities). Results are ordered newest-first and include a short
        text preview of each feedback entry.
      parameters:
        - description: >-
            Filter by processing status. Pass true to return only processed
            feedback, false to return only unprocessed feedback. Omit to return
            all feedback.
          in: query
          name: processed
          required: false
          schema:
            type: boolean
        - description: >-
            Maximum number of feedback entries to return (1-100). Defaults to
            50.
          in: query
          name: limit
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListFeedbackResponse'
          description: Feedback retrieved successfully
        '400':
          description: Bad request
          content:
            application/json:
              example:
                message: Bad request
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                message: Unauthorized
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              example:
                message: Forbidden
              schema:
                $ref: '#/components/schemas/MessageResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                message: Internal server error
              schema:
                $ref: '#/components/schemas/MessageResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ListFeedbackResponse:
      additionalProperties: false
      properties:
        feedback:
          description: The feedback entries, ordered newest-first.
          items:
            $ref: '#/components/schemas/FeedbackItem'
          type: array
      required:
        - feedback
      type: object
    MessageResponse:
      additionalProperties: false
      properties:
        message:
          example: System provided message
          type: string
      type: object
    FeedbackItem:
      additionalProperties: false
      description: A single feedback entry.
      properties:
        id:
          description: The unique identifier for the feedback.
          type: string
        processed:
          description: >-
            Whether the feedback has been processed (analyzed for insights and
            opportunities).
          type: boolean
        capturedAt:
          description: ISO 8601 timestamp of when the feedback was captured/shared.
          format: date-time
          type: string
        createdAt:
          description: ISO 8601 timestamp of when the feedback record was created.
          format: date-time
          type: string
        source:
          description: >-
            Where the feedback originated (e.g. "vistaly-api", "slack-bot",
            "web-extension", "direct").
          type: string
        sourceUrl:
          description: Optional link to where the feedback originated.
          type: string
        textPreview:
          description: >-
            A short preview of the feedback content. May be empty until the
            feedback has been processed.
          type: string
        cardIds:
          description: IDs of the cards this feedback is linked to via insights.
          items:
            type: string
          type: array
        customerUserIds:
          description: IDs of the customer users associated with the feedback.
          items:
            type: string
          type: array
        insightCount:
          description: The number of insights extracted from the feedback.
          type: integer
        appUrl:
          description: A link to view the feedback in the Vistaly app.
          type: string
      required:
        - id
        - processed
        - source
        - cardIds
        - customerUserIds
        - insightCount
        - appUrl
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````