---
title: "Get Feedbacks"
method: GET
path: "/admin/feedbacks"
tags: ["Feedback"]
---

# Get Feedbacks

`GET /admin/feedbacks`

Paginated list of feedbacks, newest first. `total` counts the feedbacks
matching the filters, not the page.

## Query parameters

- `status` 'new' | 'in-progress' | 'done', nullable
- `search` string, nullable — Free text on the author: name or email
- `role` 'student' | 'teacher' | 'admin', nullable
- `school_id` string, nullable — B2B school: its teachers and their students
- `skip` integer
- `limit` integer

## Response `200`

Successful Response

- FeedbackListResponse
  - `feedbacks` FeedbackListItem[], required
    - `id` string, required
    - `user_id` string, required
    - `user_email` string, required
    - `user_name` string, required
    - `user_role` string, nullable
    - `feedback_preview` string, required
    - `status` 'new' | 'in-progress' | 'done', required
    - `timestamp` string, date-time, required
    - `image_count` integer, required
    - `owner` string, nullable
    - `owner_name` string, nullable
  - `total` integer, required

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-05** `437cd8414e9e` — 2 info
  - added the optional property `feedbacks/items/owner` to the response with the `200` status
  - added the optional property `feedbacks/items/owner_name` to the response with the `200` status
- **2026-09-03** `ef67479ed898` — 1 breaking, 4 info
  - for the `query` request parameter `limit`, default value was changed from `50` to `20`
  - added the new optional `query` request parameter `role`
  - added the new optional `query` request parameter `school_id`
  - added the new optional `query` request parameter `search`
  - …1 more

[Change history](https://skmtc.dev/excellence-ai/apis/excellence-learning/changes/admin/feedbacks/get.md)

---

[API](https://skmtc.dev/excellence-ai/apis/excellence-learning.md) · [All operations](https://skmtc.dev/excellence-ai/apis/excellence-learning/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/excellence-ai/excellence-learning/revisions/437cd8414e9e/schema)
