ListAnimesByLastAddedEpisode
ListAnimesByLastAddedEpisode returns animes that have recently had new episodes added.
/api.v1.anime.AnimeService/ListAnimesByLastAddedEpisode PublicRequest
ListAnimesRequest
ListAnimesRequestapi.v1.anime.ListAnimesRequest1 fields
ListAnimesRequest contains pagination parameters for listing animes.
pageint32The page number to retrieve (1-based).
{
"page": 1
}Response
ListAnimesByLastAddedEpisodeResponse
ListAnimesByLastAddedEpisodeResponseapi.v1.anime.ListAnimesByLastAddedEpisodeResponse3 fields
ListAnimesByLastAddedEpisodeResponse contains a list of recently updated animes.
pagesint32Total number of pages available.
statusint32HTTP-style status code for the response.
{
"data": [
{
"episodeId": 1,
"createdAt": "2026-08-19T20:15:00Z",
"slug": "frieren",
"season": "1",
"episode": "1",
"poster": "https://example.com/image.webp",
"backdrop": "https://example.com/image.webp",
"image": "https://example.com/image.webp"
}
],
"pages": 1,
"status": 200
}Referenced models
1 nested message types
ListAnimeByLastAddedEpisodeItemapi.v1.anime.ListAnimeByLastAddedEpisodeItem12 fields
ListAnimeByLastAddedEpisodeItem represents an anime with its most recently added episode.
episodeIduint32Unique identifier for the episode.
createdAtstringTimestamp when the episode was added.
slugstringURL-friendly identifier for the anime.
seasonstringSeason identifier.
episodestringEpisode identifier.
posterstringURL to the anime's poster image.
backdropstringURL to the anime's backdrop image.
imagestringURL to the episode-specific image.
titlestringTitle of the anime.
hasGerSubboolIndicates if German subtitles are available.
hasGerDubboolIndicates if German dubbing is available.
hasEngSubboolIndicates if English subtitles are available.
Error handling
Common failure codes
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.