One genre and studio pairing with aggregate counts, scores, watch time, and representative anime.
genre
string
genreRoute
string
studio
string
studioRoute
string
count
int
Occurrences of the genre–studio pair in the user's list.
totalScore
float64
Sum of scores for scored entries in this pair (0–100 scale).
scoredCount
int
Number of scored entries contributing to totalScore.
totalMinutes
float64
Total minutes watched for this pair (episodesSeen × lengthMin).
completedCount
int
Number of completed entries in this pair.
totalCount
int
Total number of entries in this pair.
animes
[]Stat Anime
Anime contributing to this pair (can be used to derive representatives).
OBJ
Categories
Curated genre and studio lists plus genre×studio combinations for metric toggles, sorting, and thumbnails.
genreStudio
[]Genre Studio Combo
topGenres
[]Top Category
Union of top genres by count, score, and days watched (used when toggling overview list metrics).
topStudios
[]Top Category
Union of top studios by count, score, and days watched (used when toggling overview list metrics).
OBJ
Durations
Minutes watched grouped by genre and studio.
genres
map[string]float64
Minutes watched by genre.
studios
map[string]float64
Minutes watched by studio.
OBJ
User Stats
userId
string
username
string
totals
Totals
scores
Scores
durations
Durations
categories
Categories
OBJ
Score Averages
genres
map[string]float64
Average user score by genre (0–100 scale).
studios
map[string]float64
Average user score by studio (0–100 scale).
OBJ
Scores
Average user scores grouped by genre and studio.
averages
Score Averages
OBJ
Top Category
One genre or studio row with counts, average score, watch time, and a representative anime for thumbnails.
name
string
route
string
Category page route slug.
amount
int
Anime count for this category in the user's list.
avgScore
float64
Average user score (0–100 scale).
daysWatched
float64
Days watched for this category.
top
Stat Anime
Representative anime for list thumbnails and links.
OBJ
Totals
Genre and studio anime counts for the user's list, including completed-only breakdowns.
genres
map[string]int
Anime counts by genre.
studios
map[string]int
Anime counts by studio.
completedGenres
map[string]int
Completed anime counts by genre.
completedStudios
map[string]int
Completed anime counts by studio.
OBJ
Stat Anime
Anime row used as a representative inside a genre×studio combination.
title
string
route
string
score
float64
effectiveTrackedCount
int
Non-dropped list count.
popularityRankKey
float64
Popularity sort key (effective tracked with score boost).
imageVersionRoute
string
GET
/users/{user}/avatar
Returns the user's profile avatar image
Examples:
/users/animeLover52/avatar
/users/animeLover52/avatar?format=json
format
string
Use json for a JSON string of the CDN URL. Omit for a redirect to the image.
Examples:
?format=json
GET
/users/{user}/banner
Returns the user's profile banner image
Examples:
/users/animeLover52/banner
/users/animeLover52/banner?format=json
format
string
Use json for a JSON string of the CDN URL. Omit for a redirect to the image.
Examples:
?format=json
GET
/users/{user}/stats
Fetch a user's statistics
Description
Returns a User Stats object. Fields are omitted when empty, zero, or otherwise unset (empty maps and arrays, zero numeric values, and empty nested objects).
Examples:
/users/animeLover52/stats
GET
OAuth2
/users/oauth/stats
Fetch the authenticated user's statistics (OAuth2)
Description
Returns the authenticated user's User Stats. Requires the stats scope. Fields are omitted when empty, zero, or otherwise unset (empty maps and arrays, zero numeric values, and empty nested objects).
Works when the profile is private (unlike the unauthenticated public request).