Obtain manga by filter with Manganelo

This endpoint allows you to get manga by applying filters from Manganelo.

  • Method: GET
  • Route: /manga/manganelo/filter

Query Parameter

ParameterTypeDescription
statusstringManga's status.
genresstringThe manga's genres for all matches.
orderstringThe manga's genres for all matches.
pagenumberThe filter page number that their want to search.

Status arguments available

Arguments
ongoing
completed
"" (empty string) for both.

Order by arguments available

ArgumentDescription
topviewThe most viewed manga.
newestThe most newest manga.
azOrdered by A-Z title.

Manga genres available

Note: If you want to filter by more of two genres, you should separate each genre listed here with a space (or %20 as URL Component).

Arguments #1Arguments #2Arguments #3Arguments #4Arguments #5Arguments #6Arguments #7
actioncomedydramagenderbenderhorrormaturemystery
adultcookingecchiharemjoseimechaoneshot
adventuredoujinshifantasyhistoricalmartialartsmedicalpsychological
Arguments #8Arguments #9Arguments #10Arguments #11Arguments #12Arguments #13Arguments #14
romanceseinenshounensmuttragedyyuriisekai
schoollifeshoujoshounenaisportswebtoonsmanhwapornographic
scifishoujoaisliceoflifesupernaturalyaoimanhuaerotica

Response

The response from this endpoint contains the filtered manga data based on the provided query parameters.

{
    "results": [
    {
      "id": "string | null",
      "title": "string",
      "thumbnail": {
        "url": "string"
      },
      "url": "/manga/manganelo/title/${string}"
    },
  ]
}

Example of use

GET https://jimov-api.vercel.app/manga/manganelo/filter?order=az&page=1&status=completed&genres=action%20romance
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/manganelo/filter?order=az&page=1&status=completed&genres=action%20romance");
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get("https://jimov-api.vercel.app/manga/manganelo/filter?order=az&page=1&status=completed&genres=action%20romance")
data = response.json()
print(data)