🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Comics
GetComics
Welcome

Welcome

This endpoint provides general information about the GetComics provider and lists available routes.

Route Schema (URL)

https://api.consumet.org/comics/getcomics

Request Samples

import axios from "axios";
 
const url = "https://api.consumet.org/comics/getcomics";
const data = async () => {
    try {
        const { data } = await axios.get(url);
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "intro": "Welcome to the getComics provider: check out the provider's website @ https://getcomics.info/",
  "routes": ["/s"],
  "documentation": "https://docs.consumet.org/#tag/getComics"
}