Get Anime Episode Servers from AnimeLatinoHD

This endpoint allows you to get the servers for a specific anime episode from AnimeLatinoHD.

  • Method: GET
  • Route: /anime/animelatinohd/episode/:episode

URL Parameter

ParameterTypeDescription
episodestringEpisode number of the anime to fetch servers for from AnimeLatinoHD

Response

The response of this endpoint contains the servers for the requested anime episode from AnimeLatinoHD.

{
  "name": "string",
  "url": "/anime/animelatinohd/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/animelatinohd/episode/shingeki-no-kyojin-3-12
JavaScript
const response = await fetch(
  "https://jimov-api.vercel.app/anime/animelatinohd/episode/shingeki-no-kyojin-3-12"
);
const data = await response.json();
console.log(data);
Python
 import requests

response = requests.get("https://jimov-api.vercel.app/anime/animelatinohd/episode/shingeki-no-kyojin-3-12")
data = response.json()
print(data)