Obtain manga information in Manganelo
This endpoint will allows you to get information about a manga in Manganelo.
- Method: GET
- Path:
/manga/manganelo/title/:id
URL parameters
Parameter | Type | Description |
---|---|---|
id | number | Manga's ID in the Manganelo website |
Response
The response from this endpoint contains the requested manga information with Manganelo.
{
"id": "string",
"url": "/manga/manganelo/title/${number}",
"title": "string",
"altTitles?": "string[]",
"thumbnail?": {
"url": "string",
"banner?": "string"
},
"description?": "string",
"status?": "ongoing | completed",
"authors?": "string[]",
"genres?": "string[]",
"characters?": "string[]",
"chapters?": [
{
"id": "number | string",
"title": "string",
"description?": "string",
"url": "/manga/manganelo/chapter/${number}",
"number": "number",
"images": "string[]",
"cover?": "string",
"date?": {
"year": "number | string",
"month?": "number | string",
"day?": "number | string"
}
}
],
"volumes?": [
{
"id": "number | string",
"range": "[number, number]",
"title?": "string",
"description?": "string",
"number?": "number",
"images": "string[]",
"date?": {
"year": "number | string",
"month?": "number | string",
"day?": "number | string"
},
"thumbnail?": "string",
"url?": "/manga/manganelo/volume/${number}"
}
],
"isNSFW": "boolean"
}
Example of use
GET https://jimov-api.vercel.app/manga/manganelo/title/md990312
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/manganelo/title/md990312");
const data = await response.json();
console.log(data);
Table of Contents