FIREANIME API
Browse API97 operations
POST

ListAnimesByLastAddedEpisode

ListAnimesByLastAddedEpisode returns animes that have recently had new episodes added.

/api.v1.anime.AnimeService/ListAnimesByLastAddedEpisode Public
01

Request

ListAnimesRequest

ListAnimesRequestapi.v1.anime.ListAnimesRequest1 fields

ListAnimesRequest contains pagination parameters for listing animes.

page
int32

The page number to retrieve (1-based).

Request JSON
{
  "page": 1
}
02

Response

ListAnimesByLastAddedEpisodeResponse

ListAnimesByLastAddedEpisodeResponseapi.v1.anime.ListAnimesByLastAddedEpisodeResponse3 fields

ListAnimesByLastAddedEpisodeResponse contains a list of recently updated animes.

dataarray

The list of anime items with recent episodes.

pages
int32

Total number of pages available.

status
int32

HTTP-style status code for the response.

Example 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
}
03

Referenced models

1 nested message types

ListAnimeByLastAddedEpisodeItemapi.v1.anime.ListAnimeByLastAddedEpisodeItem12 fields

ListAnimeByLastAddedEpisodeItem represents an anime with its most recently added episode.

episodeId
uint32

Unique identifier for the episode.

createdAt
string

Timestamp when the episode was added.

slug
string

URL-friendly identifier for the anime.

season
string

Season identifier.

episode
string

Episode identifier.

poster
string

URL to the anime's poster image.

backdrop
string

URL to the anime's backdrop image.

image
string

URL to the episode-specific image.

title
string

Title of the anime.

hasGerSub
bool

Indicates if German subtitles are available.

hasGerDub
bool

Indicates if German dubbing is available.

hasEngSub
bool

Indicates if English subtitles are available.

04

Error handling

Common failure codes

invalid_argumentThe request payload failed validation.

internalThe service could not complete the operation.