Filter Anime on Monoschinos

This endpoint allows filtering anime on Monoschinos based on different criteria.

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

Query Parameter

ParameterTypeDescription
titlestring(Optional) Title of the anime
categorystring(Optional) Title of the anime
genstring(Optional) Title of the anime
yearstring(Optional) Title of the anime

Response

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

{
  "nav": {
    "previousPage": "string",
    "nextPage": "string"
  },
  "results": [
    {
      "name": "string",
      "image": "string",
      "url": "/anime/monoschinos/name/${string}",
      "type": "string"
    }
  ]
}

Example of use

GET https://jimov-api.vercel.app/anime/monoschinos/filter?title=wonder&gen=accion
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/monoschinos/filter?title=wonder&gen=accion"
);
const data = await response.json();
console.log(data);
Python
    import requests

response = requests.get("https://jimov-api.vercel.app/anime/monoschinos/filter?title=wonder&gen=accion")
data = response.json()
print(data)