Get Anime Info
Technical details regarding the usage of the get anime info function for the enime 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/anime/enime/info?id={id}
Query Parameters
Parameter | Type | Description | Required? | Default |
---|---|---|---|---|
id | string | The enime ID of the anime; i.e. provided by searching for said anime and selecting the correct one. | Yes |
Request Samples
import axios from "axios";
// Using the example ID of "cl6og7q9y0085aclu9u9z7npw".
const url = "https://api.consumet.org/anime/enime/info?id=cl6og7q9y0085aclu9u9z7npw";
const data = async () => {
try {
const { data } = await axios.get(url, {
params: {
id: "cl6og7q9y0085aclu9u9z7npw"
}
});
return data;
} catch (err) {
throw new Error(err.message);
}
};
console.log(data);
Response Schema
MIME Type: application/json
{
"id": "string",
"title": "string",
"url": "string",
"image": "string",
"releaseDate": "string", // or null
"description": "string", // or null
"genres": [
"string"
],
"subOrDub": "sub",
"type": "string", // or null
"status": "Ongoing",
"otherName": "string", // or null
"totalEpisodes": 0,
"episodes": [
{
"id": "string",
"number": 0,
"url": "string"
}
]
}