Get AnimeFlv Episode Information
This endpoint allows you to retrieve information about an episode in AnimeFlv.
- Method: GET
- Route:
/anime/flv/episode/:episode
URL Parameter
Parameter | Type | Description |
---|---|---|
episode | string or number | Episode number or identifier in AnimeFlv |
Response
The response of this endpoint contains the information of the requested episode in AnimeFlv.
{
"name": "string",
"url": "/anime/flv/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/flv/episode/tensei-shitara-slime-datta-ken-movie-guren-no-kizunahen-1
JavaScript
const response = await fetch(
"https://jimov-api.vercel.app/anime/flv/episode/tensei-shitara-slime-datta-ken-movie-guren-no-kizunahen-1"
);
const data = await response.json();
console.log(data);
Table of Contents