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
Parameter | Type | Description |
---|---|---|
episode | string | Episode 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
- Example TioAnime episode URL: https://tioanime.com/ver/kingdom-5th-season-3
GET https://jimov-api.vercel.app/anime/tioanime/episode/kingdom-5th-season-3
JavaScript
const response = await fetch(
"https://jimov-api.vercel.app/anime/tioanime/episode/kingdom-5th-season-3"
);
const data = await response.json();
console.log(data);
Table of Contents