Get manga chapters from InManga
This endpoint allows you to get the chapters for a manga from InManga.
- Method: GET
 - Route: 
/manga/inmanga/chapter/:chapter 
URL Parameter
| Parameter | Type | Description | 
|---|---|---|
| chapter | string | Manga name | 
Query Parameter
| Parameter | Type | Description | 
|---|---|---|
| cid | string | Manga chapter ID | 
Response
The response of this endpoint contains the chapter pages for the requested manga episode from InManga.
{
  /** Manga chapter number */
  "id": "number",
  "title": "string",
  "url": "/manga/inmanga/chapter/${string}",
  "number": "number | null",
  "images": [
    {
      "width": "string",
      "height": "string",
      "name": "string",
      "url": "string"
    },
  ],
  "cover": "string | null",
  "date": {
    "year": "number | null",
    "month": "number | null",
    "day": "number | null"
  }
}
Example of use
GET https://jimov-api.vercel.app/manga/inmanga/chapter/One-Piece?cid=dd6ab2dd-115b-4ee5-bf9f-d2f210e4e5a4
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/inmanga/chapter/One-Piece?cid=dd6ab2dd-115b-4ee5-bf9f-d2f210e4e5a4");
const data = await response.json();
console.log(data);
Table of Contents