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

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

ParameterTypeDescriptionRequired?Default
chapterIdstringThe 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"
  }
]