FIREANIME API
Browse API97 operations
POST

ListAnimeReviews

List Anime Reviews through the Review service.

/api.v1.review.ReviewService/ListAnimeReviews Bearer optional
01

Request

ListAnimeReviewsRequest

ListAnimeReviewsRequestapi.v1.review.ListAnimeReviewsRequest5 fields

List Anime Reviews Request message.

animeId
uint32

Anime Id value.

sort
string

recent, highest_rated, or most_helpful

language
string

Language value.

page
int32

Page value.

limit
int32

Limit value.

Request JSON
{
  "animeId": 1,
  "sort": "string",
  "language": "de",
  "page": 1,
  "limit": 20
}
02

Response

ListAnimeReviewsResponse

ListAnimeReviewsResponseapi.v1.review.ListAnimeReviewsResponse4 fields

List Anime Reviews Response message.

dataarray

Data value.

page
int32

Page value.

totalPages
int32

Total Pages value.

totalResults
int32

Total Results value.

Example response
{
  "data": [
    {
      "id": 1,
      "animeId": 1,
      "authorId": 1,
      "author": {
        "id": 1,
        "username": "fireanime_user",
        "avatarUrl": "/anime/frieren"
      },
      "title": "Frieren: Beyond Journey’s End",
      "content": "Example content",
      "storyScore": 85,
      "animationScore": 85
    }
  ],
  "page": 1,
  "totalPages": 1,
  "totalResults": 1
}
03

Referenced models

2 nested message types

AnimeReviewapi.v1.review.AnimeReview22 fields

Anime Review message.

id
uint32

Id value.

animeId
uint32

Anime Id value.

authorId
uint32

Author Id value.

author

Author value.

title
string

Title value.

content
string

Content value.

storyScore
int32

Story Score value.

animationScore
int32

Animation Score value.

soundScore
int32

Sound Score value.

characterScore
int32

Character Score value.

enjoymentScore
int32

Enjoyment Score value.

isVerifiedWatcher
bool

Is Verified Watcher value.

isSpoiler
bool

Is Spoiler value.

language
string

Language value.

helpfulCount
int32

Helpful Count value.

viewerFoundHelpful
bool

Viewer Found Helpful value.

isHidden
bool

Is Hidden value.

canEdit
bool

Can Edit value.

canDelete
bool

Can Delete value.

createdAt
string

Created At value.

updatedAt
string

Updated At value.

permalink
string

Permalink value.

ReviewAuthorapi.v1.review.ReviewAuthor3 fields

Review Author message.

id
uint32

Id value.

username
string

Username value.

avatarUrl
string

Avatar Url value.

04

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.