mirror of
https://github.com/MinazukiAmane/Nganime-Docs.git
synced 2025-03-15 20:55:55 +08:00
90 lines
2.1 KiB
Plaintext
90 lines
2.1 KiB
Plaintext
|
---
|
||
|
title: GogoAnime | Available Servers
|
||
|
---
|
||
|
|
||
|
import { Tab, Tabs } from "nextra-theme-docs";
|
||
|
|
||
|
# Get Anime Episode Available Servers
|
||
|
|
||
|
Technical details regarding the usage of the get available servers function for the GogoAnime 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/gogoanime/servers/{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 'spy-x-family-episode-1'.
|
||
|
const url = "https://api.nganime.my.id/anime/gogoanime/servers/spy-x-family-episode-1";
|
||
|
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 'spy-x-family-episode-1'.
|
||
|
url = "https://api.nganime.my.id/anime/gogoanime/servers/spy-x-family-episode-1"
|
||
|
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
|
||
|
[
|
||
|
{
|
||
|
"name": "string",
|
||
|
"url": "string"
|
||
|
}
|
||
|
]
|
||
|
```
|
||
|
</Tab>
|
||
|
<Tab>
|
||
|
**MIME Type:** `application/json`
|
||
|
```json copy=false
|
||
|
"message": {}
|
||
|
```
|
||
|
</Tab>
|
||
|
<Tab>
|
||
|
**MIME Type:** `application/json`
|
||
|
```json copy=false
|
||
|
"message": {}
|
||
|
```
|
||
|
</Tab>
|
||
|
</Tabs>
|