Get manga chapters in Manganelo
This endpoint allows you to get the chapters for a manga from Manganelo.
- Method: GET
- Route:
/manga/manganelo/chapter/:id
URL Parameter
Parameter | Type | Description |
---|---|---|
id | number | Manga's ID from Manganelo website |
Query Parameters
Parameter | Type | Description |
---|---|---|
num | number | Manga's chapter number |
Response
The response of this endpoint contains the chapter pages for the requested manga episode from Manganelo.
{
"id": "number",
"title": "string",
"url": "/manga/manganelo/chapter/${number}",
"number": "number",
"images": "string[]"
}
Example of use
GET https://jimov-api.vercel.app/manga/manganelo/chapter/md990312?num=76
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/manganelo/chapter/md990312?num=76");
const data = await response.json();
console.log(data);
Table of Contents