--- title: animepahe | Anime Info --- import { Tab, Tabs } from "nextra-theme-docs"; # 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.nganime.my.id/anime/animepahe/info/{id} ``` ## Path Parameters | Parameter | Type | Description | Required? | Default | | :-------: | :----: | ------------------------------------------------------------------------------------------------------- | :-------: | :-----: | | id | string | The animepahe ID of the anime; i.e. provided by searching for said anime and selecting the correct one. | Yes | | ## Request Samples <> ```js import axios from "axios"; // Using the example ID of "99318885-5a76-cfa6-3b99-57007bbb7673". const url = "https://api.nganime.my.id/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); ``` <> ```python import requests # Using the example ID of "99318885-5a76-cfa6-3b99-57007bbb7673". url = "https://api.nganime.my.id/anime/animepahe/info/99318885-5a76-cfa6-3b99-57007bbb7673" response = requests.get(url) data = response.json() print(data) ``` ## Response Schema **MIME Type:** `application/json` ```json copy=false { "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" } ] } ``` **MIME Type:** `application/json` ```json copy=false "message": {} ``` **MIME Type:** `application/json` ```json copy=false "message": {} ```