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

GET https://jimov-api.vercel.app/manga/inmanga/title/One-Punch-Man
JavaScript
const response = await fetch("https://jimov-api.vercel.app/manga/inmanga/title/One-Punch-Man");
const data = await response.json();
console.log(data);
Python
import requests
response = requests.get("https://jimov-api.vercel.app/manga/inmanga/title/One-Punch-Man")
data = response.json()
print(data)