TioAnime
Last Releases
Obtain last release information in Tioanime.
Obtain last release information in TioAnime
This endpoint will return TioAnime information on the latest releases including new episodes, animes, movies and ovas.
- Method: GET
- Path:
/anime/tioanime/last/:option
URL parameters
| Parameter | Type | Description |
|---|---|---|
| option | string | The option of the request to be executed. The following options are available (episodes, animes, movies, ovas, onas) |
Response
The response from this endpoint contains the requested information in TioAnime. Jimov API will return an array including different interfaces depending the option you selected.
- Episodes: Episode interface
- Animes: Anime interface
- Movies, Ovas & Onas: Interface
Example of use
Terminal
GET https://jimov-api.vercel.app/anime/tioanime/last/episodes
const response = await fetch(
"https://jimov-api.vercel.app/anime/tioanime/last/episodes"
);
const data = await response.json();
console.log(data);
import requests
response = requests.get("https://jimov-api.vercel.app/anime/tioanime/last/episodes")
data = response.json()
print(data)