Get Manga Info
Technical details regarding the usage of the get manga info function for the mangadex 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/mangadex/info?id={id}
Query Parameters
Parameter | Type | Description | Required? | Default |
---|---|---|---|---|
id | string | The mangadex ID 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 of "259dfd8a-f06a-4825-8fa6-a2dcd7274230".
const url = "https://api.consumet.org/manga/mangadex/info/259dfd8a-f06a-4825-8fa6-a2dcd7274230";
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
{
"id": "string",
"title": "string",
"altTitles": ["string"], // or null
"genres": ["string"], // or null
"headerForImage": "string", // or null
"image": "string", // or null
"chapters": [
{
"id": "string",
"title": "string",
"releaseDate": "string" // or null
}
]
}