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

Get Manga Info

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

Query Parameters

ParameterTypeDescriptionRequired?Default
idstringThe ComicK ID/slug 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.
const url = "https://api.consumet.org/manga/comick/info";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { id: "solo-leveling" } });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "id": "string",
  "title": "string",
  "altTitles": ["string"],
  "description": "string",
  "genres": ["string"],
  "status": "string",
  "image": "string",
  "authors": ["string"],
  "chapters": [
    {
      "id": "string",
      "title": "string",
      "chapterNumber": "string",
      "releasedDate": "string"
    }
  ]
}