ListAnimesWatchStatus
ListAnimesWatchStatus retrieves a paginated list of animes filtered by their watch status.
/api.v1.watch.WatchService/ListAnimesWatchStatus Bearer requiredRequest
ListAnimesWatchStatusRequest
ListAnimesWatchStatusRequestapi.v1.watch.ListAnimesWatchStatusRequest3 fields
ListAnimesWatchStatusRequest contains filters and pagination for the user's list.
pageint32The page number to retrieve (1-based).
statusstringFilter by a specific status (e.g., "watching").
userIdoptionalstringOptional user ID to view another user's public list.
{
"page": 1,
"status": "active",
"userId": "string"
}Response
ListAnimesWatchStatusResponse
ListAnimesWatchStatusResponseapi.v1.watch.ListAnimesWatchStatusResponse2 fields
ListAnimesWatchStatusResponse contains a page of animes with the specified status.
maxint32The total number of animes with this status.
{
"data": [
{
"updatedAt": "1",
"animeId": 1,
"slug": "frieren",
"title": "Frieren: Beyond Journey’s End",
"start": 1,
"end": 1,
"poster": "https://example.com/image.webp",
"backdrop": "https://example.com/image.webp"
}
],
"max": 1
}Referenced models
1 nested message types
ListAnimeWatchStatusItemapi.v1.watch.ListAnimeWatchStatusItem8 fields
ListAnimeWatchStatusItem represents a summary of an anime in a user's list.
updatedAtint64Unix timestamp (milliseconds) of the last status update.
animeIduint32ID of the anime.
slugstringURL-friendly identifier for the anime.
titlestringPublic title of the anime.
startoptionalint32Optional start year/date.
endoptionalint32Optional end year/date.
posterstringURL to the anime's poster.
backdropstringURL to the anime's backdrop.
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.