add animepahe

This commit is contained in:
Kiera Affarantia 2024-03-08 18:24:09 +07:00
parent 06210df9ef
commit 273a91f53d
4 changed files with 316 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
"search": "Search",
"get-anime-info": "Get Anime Info",
"get-anime-episode-streaming-links": "Get Anime Episode Streaming Links"
}

View File

@ -0,0 +1,102 @@
---
title: animepahe | Streaming Links
---
import { Tab, Tabs } from "nextra-theme-docs";
# Get Anime Episode Streaming Links
Technical details regarding the usage of the get anime streaming links 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/watch/{episodeId}
```
## Path Parameters
| Parameter | Type | Description | Required? | Default |
| :-------: | :----: | ----------------------------------------------------------------- | :-------: | :-----: |
| query | string | The search query; i.e. the title of the item you are looking for. | Yes | `""` |
## Request Samples
<Tabs items={["JavaScript", "Python"]}>
<Tab>
<>
```js
import axios from "axios";
/*
Using the example episode ID of '2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"',
*/
const url = "https://api.nganime.my.id/anime/animepahe/watch/2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95";
const data = async () => {
try {
const { data } = await axios.get(url);
return data;
} catch (err) {
throw new Error(err.message);
}
};
console.log(data);
```
</>
</Tab>
<Tab>
<>
```python
import requests
"""
Using the example episode ID of '2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"'
"""
url = "https://api.nganime.my.id/anime/animepahe/watch/2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"
response = requests.get(url)
data = response.json()
print(data)
```
</>
</Tab>
</Tabs>
## Response Schema
<Tabs items={["200 OK", "404 Not Found", "500 Internal Server Error"]}>
<Tab>
**MIME Type:** `application/json`
```json copy=false
{
"headers": {
"Referer": "string",
"watchsb": "string", // or null, since only provided with server being equal to "streamsb".
"User-Agent": "string" // or null
},
"sources": [
{
"url": "string",
"quality": "string",
"isM3U8": true
}
]
}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
</Tabs>

View File

@ -0,0 +1,102 @@
---
title: animepahe | Streaming Links
---
import { Tab, Tabs } from "nextra-theme-docs";
# Get Anime Episode Streaming Links
Technical details regarding the usage of the get anime streaming links 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/watch/{episodeId}
```
## Path Parameters
| Parameter | Type | Description | Required? | Default |
| :-------: | :----: | ----------------------------------------------------------------- | :-------: | :-----: |
| query | string | The search query; i.e. the title of the item you are looking for. | Yes | `""` |
## Request Samples
<Tabs items={["JavaScript", "Python"]}>
<Tab>
<>
```js
import axios from "axios";
/*
Using the example episode ID of '2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"',
*/
const url = "https://api.nganime.my.id/anime/animepahe/watch/2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95";
const data = async () => {
try {
const { data } = await axios.get(url);
return data;
} catch (err) {
throw new Error(err.message);
}
};
console.log(data);
```
</>
</Tab>
<Tab>
<>
```python
import requests
"""
Using the example episode ID of '2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"'
"""
url = "https://api.nganime.my.id/anime/animepahe/watch/2242c5d8ac108a8b5d0ac16bf2db82d55d5a578b2ed2e4ca0c6ed1b5dccc3e95"
response = requests.get(url)
data = response.json()
print(data)
```
</>
</Tab>
</Tabs>
## Response Schema
<Tabs items={["200 OK", "404 Not Found", "500 Internal Server Error"]}>
<Tab>
**MIME Type:** `application/json`
```json copy=false
{
"headers": {
"Referer": "string",
"watchsb": "string", // or null, since only provided with server being equal to "streamsb".
"User-Agent": "string" // or null
},
"sources": [
{
"url": "string",
"quality": "string",
"isM3U8": true
}
]
}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
</Tabs>

View File

@ -0,0 +1,107 @@
---
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
<Tabs items={["JavaScript", "Python"]}>
<Tab>
<>
```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);
```
</>
</Tab>
<Tab>
<>
```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)
```
</>
</Tab>
</Tabs>
## Response Schema
<Tabs items={["200 OK", "404 Not Found", "500 Internal Server Error"]}>
<Tab>
**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"
}
]
}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
<Tab>
**MIME Type:** `application/json`
```json copy=false
"message": {}
```
</Tab>
</Tabs>