ListFeedbacks
ListFeedbacks retrieves a paginated list of feedback submissions. For normal users, it only returns their own.
/api.v1.feedback.FeedbackService/ListFeedbacks Bearer requiredRequest
ListFeedbacksRequest
ListFeedbacksRequestapi.v1.feedback.ListFeedbacksRequest8 fields
ListFeedbacksRequest contains filters and pagination for administrative review.
pageint32The page number to retrieve (1-based).
limitint32The maximum number of items per page.
statusoptionalstringFilter by feedback status.
categoryoptionalstringFilter by feedback category.
animeIdoptionaluint32Filter by associated anime ID.
animeSeasonIdoptionaluint32Filter by associated anime season ID.
animeEpisodeIdoptionaluint32Filter by associated anime episode ID.
userIdoptionaluint32Filter by the submitter's user ID.
{
"page": 1,
"limit": 20,
"status": "active",
"category": "string",
"animeId": 1,
"animeSeasonId": 1,
"animeEpisodeId": 1,
"userId": 1
}Response
ListFeedbacksResponse
ListFeedbacksResponseapi.v1.feedback.ListFeedbacksResponse2 fields
ListFeedbacksResponse contains a page of feedback items.
pagesint32Total number of pages available.
{
"data": [
{
"id": 1,
"title": "Frieren: Beyond Journey’s End",
"description": "Example content",
"category": "string value",
"status": "active",
"adminComment": "string value",
"createdAt": "2026-08-19T20:15:00Z",
"userName": "fireanime_user"
}
],
"pages": 1
}Referenced models
1 nested message types
Feedbackapi.v1.feedback.Feedback16 fields
Feedback represents a single user submission about a bug, suggestion, or other topic.
iduint32Unique database identifier for the feedback.
titlestringShort summary or title of the feedback.
descriptionstringDetailed explanation or report content.
categorystringCategorization of the feedback (e.g., "bug", "suggestion", "content").
statusstringCurrent status of the feedback (e.g., "pending", "resolved", "closed").
adminCommentoptionalstringOptional comments added by an administrator during review.
createdAtstringTimestamp when the feedback was submitted (RFC3339 format).
userNameoptionalstringThe username of the submitter, if authenticated.
userIdoptionaluint32The unique ID of the submitter, if authenticated.
animeIdoptionaluint32Optional ID of the anime related to this feedback.
animeSlugoptionalstringOptional slug of the anime related to this feedback.
animeTitleoptionalstringOptional title of the anime related to this feedback.
seasonoptionalstringOptional season identifier related to this feedback.
animeSeasonIdoptionaluint32Optional database ID of the anime season.
episodeoptionalstringOptional episode identifier related to this feedback.
animeEpisodeIdoptionaluint32Optional database ID of the anime episode.
Error handling
Common failure codes
unauthenticatedThe Bearer token is missing or invalid.
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.