AnimeFlv
Filter Anime
Get anime information with filters in AnimeFlv.
Get Anime Information with Filters in AnimeFlv
This endpoint allows you to get anime information with filters in AnimeFlv.
- Method: GET
- Route:
/anime/flv/filter
Query Parameter
| Parameter | Type | Description |
|---|---|---|
| gen | genres | Genre of the anime |
| dates | string | Date of the anime (e.g., "2023-01-01") |
| type | type AnimeFlv | Type of the anime (Anime, Movie, OVA, ONA, Null) |
| status | status AnimeFlv | Status of the anime (On Air, Finished, On Hold) |
| ord | order AnimeFlv | Order of the anime list (Latest, Oldest, AZ, ZA, Null) |
| page | number | Page number of the anime list |
| title | string | Title of the anime (optional) |
Response
The response of this endpoint contains the filtered anime information from AnimeFlv.
{
"nav": {
"previousPage": "string",
"nextPage": "string"
},
"results": [
{
"name": "string",
"image": "string",
"url": "/anime/flv/name/${string}",
"type": "string"
}
]
}
Example of use
Terminal
GET https://jimov-api.vercel.app/anime/flv/filter?gen=accion&status=finalizado&ord=1&page=1
const response = await fetch(
"https://jimov-api.vercel.app/anime/flv/filter?gen=accion&status=finalizado&ord=1&page=1"
);
const data = await response.json();
console.log(data);
import requests
response = requests.get("https://jimov-api.vercel.app/anime/flv/filter", params={"gen": "accion", "status": "finalizado", "ord": "1", "page": 1})
data = response.json()
print(data)