JIMOV API Logo
Manganelo

Filter Manga

Obtain manga by filter with Manganelo.

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

| Parameter | Type | Description | | | ----------- | -------------- | -------------------------------------------------------------- | | | status | string | Manga's status. | | | genres | string | The manga's genres for all matches. | | | order | string | The manga's genres for all matches. | | | page | number | The filter page number that their want to search. | |

Status arguments available

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

Order by arguments available

| Argument | Description | | |----------|------------------------| | | topview | The most viewed manga. | | | newest | The most newest manga. | | | az | Ordered 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 #1 | Arguments #2 | Arguments #3 | Arguments #4 | Arguments #5 | Arguments #6 | Arguments #7 | | |--------------|--------------|--------------|--------------|--------------|--------------|---------------| | | action | comedy | drama | genderbender | horror | mature | mystery | | | adult | cooking | ecchi | harem | josei | mecha | oneshot | | | adventure | doujinshi | fantasy | historical | martialarts | medical | psychological | |

| Arguments #8 | Arguments #9 | Arguments #10 | Arguments #11 | Arguments #12 | Arguments #13 | Arguments #14 | | |--------------|--------------|---------------|---------------|---------------|---------------|---------------| | | romance | seinen | shounen | smut | tragedy | yuri | isekai | | | schoollife | shoujo | shounenai | sports | webtoons | manhwa | pornographic | | | scifi | shoujoai | sliceoflife | supernatural | yaoi | manhua | erotica | |

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

Terminal
GET https://jimov-api.vercel.app/manga/manganelo/filter?order=az&page=1&status=completed&genres=action%20romance
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);
Copyright © 2026