Get Episode Servers for an Anime on Monoschinos
This endpoint allows you to get the episode servers for an anime on Monoschinos.
- Method: GET
 - Route: 
/anime/monoschinos/episode/:episode 
URL Parameter
| Parameter | Type | Description | 
|---|---|---|
| episode | string | Episode number or identifier to fetch | 
Response
The response of this endpoint contains the servers for the requested anime episode from AnimeLatinoHD.
{
  "name": "string",
  "url": "/anime/monoschinos/episode/${string}",
  "number": "number | string",
  "servers": [
    {
      "name": "string",
      "url": "string",
      "file_url": "string"
    }
  ],
  "image": "string"
}
Example of use
GET https://jimov-api.vercel.app/anime/monoschinos/episode/kono-subarashii-sekai-ni-bakuen-wo-episodio-2
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/monoschinos/episode/kono-subarashii-sekai-ni-bakuen-wo-episodio-2"
);
const data = await response.json();
console.log(data);
Table of Contents