---
title: "List App Feedbacks"
method: GET
path: "/app/feedbacks"
tags: ["Feedback"]
---

# List App Feedbacks

`GET /app/feedbacks`

**Available for**: Chatflow, Chatbot, Agent, Text Generator apps.

Returns a paginated list of all feedback on the app's messages, including both end-user and admin submissions.

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

A list of application feedbacks.

- AppFeedbacksResponse
  - `data` FeedbackItem[] — List of feedback items.
    - `id` string, uuid — Feedback ID.
    - `app_id` string, uuid — Application ID.
    - `conversation_id` string, uuid — Conversation ID.
    - `message_id` string, uuid — Message ID.
    - `rating` string — Feedback rating. `like` for positive, `dislike` for negative.
    - `content` string, nullable — Optional text feedback.
    - `from_source` string — Feedback source. `user` for end-user feedback submitted via API, `admin` for feedback submitted from the console.
    - `from_end_user_id` string, uuid, nullable — End user ID who submitted the feedback. Present when `from_source` is `user`.
    - `from_account_id` string, uuid, nullable — Account ID who submitted the feedback. Present when `from_source` is `admin`.
    - `created_at` string, date-time — Creation timestamp.
    - `updated_at` string, date-time — Last update timestamp.

---

[API](https://skmtc.net/langgenius/apis/dify-service-api.md) · [All operations](https://skmtc.net/langgenius/apis/dify-service-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langgenius/dify-service-api/revisions/e49b3db72bad/schema)
