🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Meta
Anilist (Manga)
Read Manga

Read

Technical details regarding the usage of the Read function for the Anilist Manga 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/meta/anilist-manga/read?chapterId={chapterId}&provider={provider}

Query Parameters

ParameterTypeDescriptionRequired?Default
chapterIdstringThe ID of the selected chapter you want to readYesN/A
providerstringThe provider you want to use. Enum: mangadex, mangahere, mangakakalot, mangapark, mangapill, mangareader, mangasee123noN/A

Request Samples

import axios from "axios";
 
// Using the example id of "30013" and the query of "mangareader"
const url = "https://api.consumet.org/meta/anilist-manga/read";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { chapterId: "one-piece-3/fr/chapter-1", provider: "mangareader" } });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
    "img": "string",
    "page": "integer",
}