Get Anime Information with Filters in TioAnime

This endpoint allows you to get anime information with filters in TioAnime.

  • Method: GET
  • Route: /anime/tioanime/filter

Query Parameter

ParameterTypeDescription
titlestringnull
genstringThe genre of the anime. If you want to add one or more than one genre, you should separate each genre using this example: gen%5B%5D=GenreName&.
begin_yearnumberThe starting year.
end_yearnumberThe final year.
typenumberThe type of the anime: 0 = TV, 1 = Movie, 2 = OVA, 3 = Special
statusnumberThe status of the anime: 3 = coming soon, 2 = completed, 1 = on air.
sortstringOrder to show the anime: recent, -recent.

List of available genres for TioAnime

Arguments #1Arguments #2Arguments #3Arguments #4Arguments #5
accionartes-marcialesaventuracarrerasciencia-ficcion
comediademenciademoniosdeportesdrama
ecchiescolaresespacialfantasiaharem
historicoinfantiljoseijuegosmagia
mechamilitarmisteriomusicaparodia
policiapsicologicorecuentos-de-la-vidaromancesamurai
seinenshoujoshounensobrenaturalsuperpoderes
suspensoterrorvampirosyaoiyuri

Response

The response of this endpoint contains the filtered anime information from TioAnime.

{
  "results": [
    {
      "name": "string",
      "image": "string",
      "url": "/anime/tioanime/name/${string}",
      "type": "string"
    }
  ]
}

Example of use

GET https://jimov-api.vercel.app/anime/tioanime/filter?gen%5B%5D=aventura&gen%5B%5D=demencia&type=0&begin_year=1950&begin_year=2023&status=2&sort=recent
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/tioanime/filter?gen%5B%5D=aventura&gen%5B%5D=demencia&type=0&begin_year=1950&begin_year=2023&status=2&sort=recent"
);
const data = await response.json();
console.log(data);
Python
 import requests

response = requests.get("https://jimov-api.vercel.app/anime/tioanime/filter?gen%5B%5D=aventura&gen%5B%5D=demencia&type=0&begin_year=1950&begin_year=2023&status=2&sort=recent")
data = response.json()
print(data)