JIMOV API Logo
TioAnime

Get Episode Servers

Get TioAnime episode information and servers.

Get TioAnime Episode Information

This endpoint allows you to retrieve information about an episode on TioAnime.

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

URL Parameter

ParameterTypeDescription
episodestringEpisode identifier on TioAnime

Response

The response of this endpoint contains the information of the requested episode on TioAnime.

[{
  /** Name of the server where the episode is hosted */
  "name": "string",
  /**
   * The URL of the chapter. This URL leads to the video player of the
   * server where the episode is hosted. */
  "url": "string",
  /** Direct video file url for download */
  "file_url?": "string",
}]

Example of use

Terminal
GET https://jimov-api.vercel.app/anime/tioanime/episode/kingdom-5th-season-3
const response = await fetch(
  "https://jimov-api.vercel.app/anime/tioanime/episode/kingdom-5th-season-3"
);
const data = await response.json();
console.log(data);
Copyright © 2026