This endpoint allows you to get manga by applying filters from Manganelo.
- Method: GET
- Route:
/manga/manganelo/filter
| 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. |
| Arguments |
|---|
| ongoing |
| completed |
| "" (empty string) for both. |
| Argument | Description |
|---|
| topview | The most viewed manga. |
| newest | The most newest manga. |
| az | Ordered by A-Z title. |
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 |
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}"
},
]
}
GET https://jimov-api.vercel.app/manga/manganelo/filter?order=az&page=1&status=completed&genres=action%20romance
JavaScriptconst 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);
Pythonimport 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)