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

Get Manga Info

Technical details regarding the usage of the get manga info function for the Mangasee123 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/mangasee123/info?id={id}

Query Parameters

ParameterTypeDescriptionRequired?Default
idstringThe Mangasee123 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 "Yofukashi-no-Uta".
const url = "https://api.consumet.org/manga/mangasee123/info";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { id: "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
    }
  ]
}