FIREANIME API
Browse API97 operations
POST

DeleteEpisodeLastSeen

DeleteEpisodeLastSeen removes saved playback progress for one episode.

/api.v1.watch.WatchService/DeleteEpisodeLastSeen Bearer required
01

Request

DeleteEpisodeLastSeenRequest

DeleteEpisodeLastSeenRequestapi.v1.watch.DeleteEpisodeLastSeenRequest3 fields

DeleteEpisodeLastSeenRequest identifies one episode progress record to delete.

slug
string

URL-friendly identifier for the anime.

season
string

Season identifier.

episode
string

Episode identifier.

Request JSON
{
  "slug": "frieren",
  "season": "1",
  "episode": "1"
}
02

Response

DeleteEpisodeLastSeenResponse

DeleteEpisodeLastSeenResponseapi.v1.watch.DeleteEpisodeLastSeenResponse1 fields

DeleteEpisodeLastSeenResponse confirms progress deletion.

message
string

A descriptive message indicating the result.

Example response
{
  "message": "success"
}
03

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.