JIMOV API Logo
MangaReader

Get Manga Info

Obtain manga information in MangaReader.

Obtain manga information in MangaReader

This endpoint will allows you to get information about a manga in MangaReader.

  • Method: GET
  • Path: /manga/mangareader/title/:id

URL parameters

ParameterTypeDescription
idnumberManga's ID into the MangaReader website

Response

The response from this endpoint contains the requested manga information with MangaReader.

{
  "id": "string",
  "url": "/manga/mangareader/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/mangareader/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/mangareader/volume/${number}"
    }
  ],
  "isNSFW": "boolean"
}

Example of use

Terminal
GET https://jimov-api.vercel.app/manga/mangareader/title/67131
const response = await fetch("https://jimov-api.vercel.app/manga/mangareader/title/67131");
const data = await response.json();
console.log(data);
Copyright © 2026