Get Manga Chapter Pages
Technical details regarding the usage of the get manga chapter pages function for the ComicK provider can be found below.
Route Schema (URL)
https://api.consumet.org/manga/comick/read?chapterId={chapterId}Query Parameters
| Parameter | Type | Description | Required? | Default |
|---|---|---|---|---|
| chapterId | string | The chapter ID from the manga info endpoint. | Yes |
Request Samples
import axios from "axios";
const url = "https://api.consumet.org/manga/comick/read";
const data = async () => {
try {
const { data } = await axios.get(url, { params: { chapterId: "chapter-id-here" } });
return data;
} catch (err) {
throw new Error(err.message);
}
};
console.log(data);Response Schema
MIME Type: application/json
[
{
"page": 1,
"img": "string"
}
]