Obtain manga by filter with InManga
This endpoint allows you to get manga by applying filters from InManga.
- Method: GET
 - Route: 
/manga/inmanga/filter 
Query Parameter
| Parameter | Type | Description | 
|---|---|---|
| search | string | Search query to filter manga by name | 
| type | number | Type of manga (e.g., 0: all, 1: on broadcast, 2: finished) | 
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/inmanga/title/${string}"
    },
  ]
}
Example of use
GET https://jimov-api.vercel.app/manga/inmanga/filter?search=naruto&type=2
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/inmanga/filter?search=naruto&type=2");
const data = await response.json();
console.log(data);
Table of Contents