🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Manga
Mangapill
Get Manga Info

Get Manga Info

Technical details regarding the usage of the get manga info function for the mangapill provider can be found below. Example code is provided for both JavaScript and Python, along with a response schema.

Route Schema (URL)

https://api.consumet.org/manga/mangapill/info?id={id}

Query Parameters

ParameterTypeDescriptionRequired?Default
idstringThe mangapill ID of the manga; i.e. provided by searching for said manga and selecting the correct one.Yes

Request Samples

import axios from "axios";
 
// Using the example ID of "4886/yofukashi-no-uta".
const url = "https://api.consumet.org/manga/mangapill/info";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { id: "4886/yofukashi-no-uta"} });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "id": "string",
  "title": "string",
  "altTitles": ["string"], // or null
  "genres": ["string"], // or null
  "headerForImage": "string", // or null
  "image": "string", // or null
  "chapters": [
    {
      "id": "string",
      "title": "string",
      "releaseDate": "string" // or null
    }
  ]
}