FIREANIME API
Browse API97 operations
POST

GetUserQuickStats

GetUserQuickStats returns a summary of the user's engagement (watchlist count, likes, etc.).

/api.v1.user.UserService/GetUserQuickStats Bearer required
01

Request

GetUserQuickStatsRequest

GetUserQuickStatsRequestapi.v1.user.GetUserQuickStatsRequest1 fields

GetUserQuickStatsRequest specifies the target user for quick statistics.

userIdoptional
uint32

Optional user ID. If omitted, refers to the authenticated user.

Request JSON
{
  "userId": 1
}
02

Response

GetUserQuickStatsResponse

GetUserQuickStatsResponseapi.v1.user.GetUserQuickStatsResponse4 fields

GetUserQuickStatsResponse provides summary counts of user interactions.

recentWatchCount
int64

Total number of anime in the user's recent watch history.

likedCount
int64

Total number of episodes the user has liked.

dislikedCount
int64

Total number of episodes the user has disliked.

watchlistCount
int64

Total number of items in the user's watchlist.

Example response
{
  "recentWatchCount": "1",
  "likedCount": "1",
  "dislikedCount": "1",
  "watchlistCount": "1"
}
03

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.