GetEpisode
GetEpisode retrieves details for a specific episode, including available streaming links.
/api.v1.anime.AnimeService/GetEpisode PublicRequest
GetEpisodeRequest
GetEpisodeRequestapi.v1.anime.GetEpisodeRequest3 fields
GetEpisodeRequest specifies the exact episode to retrieve.
slugstringURL-friendly identifier for the anime.
seasonstringSeason identifier.
episodestringEpisode identifier.
{
"slug": "frieren",
"season": "1",
"episode": "1"
}Response
GetEpisodeResponse
GetEpisodeResponseapi.v1.anime.GetEpisodeResponse2 fields
GetEpisodeResponse contains the episode metadata and streaming info.
statusint32HTTP-style status code for the response.
{
"data": {
"id": 1,
"episode": "1",
"animeSeasonId": 1,
"hasGerSub": true,
"hasEngSub": true,
"hasGerDub": true,
"likeCount": 1,
"dislikeCount": 1
},
"status": 200
}Referenced models
2 nested message types
EpisodeResDataapi.v1.anime.EpisodeResData10 fields
EpisodeResData contains detailed metadata and streaming links for an episode.
iduint32Unique database identifier for the episode.
episodestringThe episode identifier (e.g., "1").
animeSeasonIduint32Identifier for the specific season this episode belongs to.
hasGerSubboolIndicates if German subtitles are available.
hasEngSubboolIndicates if English subtitles are available.
hasGerDubboolIndicates if German dubbing is available.
likeCountint32Number of likes this episode has received.
dislikeCountint32Number of dislikes this episode has received.
episodeNoticeoptionalstringOptional notice message to display instead of the player (e.g., during takedowns).
AnimeEpisodeLinkapi.v1.models.AnimeEpisodeLink4 fields
AnimeEpisodeLink represents a specific streaming hoster URL for an episode.
iduint32Unique database identifier for the link.
linkstringThe raw URL to the streaming hoster or file.
langstringThe language identifier for the link (e.g., "ger-dub", "eng-sub").
namestringHuman-readable name of the hoster (e.g., "Voe", "DoodStream").
Error handling
Common failure codes
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.