JIMOV API Logo
InManga

Get Manga Info

Obtain manga information from InManga.

Obtain manga information from InManga

This endpoint will allows you to obtain information about a manga in InManga.

  • Method: GET
  • Path: /manga/inmanga/title/:manga

URL parameters

ParameterTypeDescription
mangastringName of the manga to make a search in the InManga website

Response

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

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

Example of use

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