Obtain last release information in TioAnime

This endpoint will return TioAnime information on the latest releases including new episodes, animes, movies and ovas.

  • Method: GET
  • Path: /anime/tioanime/last/:option

URL parameters

ParameterTypeDescription
optionstringThe option of the request to be executed. The following options are available (episodes, animes, movies, ovas, onas)

Response

The response from this endpoint contains the requested information in TioAnime. Jimov API will return an array including different interfaces depending the option you selected.

Example of use

GET https://jimov-api.vercel.app/anime/tioanime/last/episodes
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/tioanime/last/episodes"
);
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get("https://jimov-api.vercel.app/anime/tioanime/last/episodes")
data = response.json()
print(data)