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

Get Manga Chapter Pages

Technical details regarding the usage of the get manga chapter pages 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/read/{chapterId}

Query Parameters

ParameterTypeDescriptionRequired?Default
chapterIdstringThe Mangasee123 ID of the chapter; i.e. provided by searching for said anime and selecting the correct one.Yes

Request Samples

import axios from "axios";
 
// Using the example chapter ID of "Yofukashi-no-Uta-chapter-1"
const url = "https://api.consumet.org/manga/mangasee123/read";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { chapterId: "Yofukashi-no-Uta-chapter-1"} });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

[
  {
    "page": number,
    "img": "string",
    "headerForImage": "string"
  },
  ...
]