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

Get Anime Info

Technical details regarding the usage of the get anime info function for the animepahe 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/animepahe/info/{id}

Path Parameters

ParameterTypeDescriptionRequired?Default
idstringThe animepahe 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 "99318885-5a76-cfa6-3b99-57007bbb7673".
const url = "https://api.consumet.org/anime/animepahe/info/99318885-5a76-cfa6-3b99-57007bbb7673";
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",
  "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"
    }
  ]
}