/v1/top
Top-ranked anime
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/myanimelist-api/v1/top" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanimelist-api/v1/top", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanimelist-api/v1/top");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/myanimelist-api/v1/top",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"anime": [
{
"url": "https://myanimelist.net/anime/16498/Shingeki_no_Kyojin",
"rank": 126,
"type": "TV",
"year": 2013,
"score": 8.57,
"title": "Shingeki no Kyojin",
"mal_id": 16498,
"status": "Finished Airing",
"members": 4377647,
"episodes": 25,
"favorites": 189875,
"scored_by": 3078433,
"title_english": "Attack on Titan",
"popularity_rank": 1
},
{
"url": "https://myanimelist.net/anime/1535/Death_Note",
"rank": 99,
"type": "TV",
"year": 2006,
"score": 8.62,
"title": "Death Note",
"mal_id": 1535,
"status": "Finished Airing",
"members": 4315293,
"episodes": 37,
"favorites": 186268,
"scored_by": 3016663,
"title_english": "Death Note",
"popularity_rank": 2
},
{
"url": "https://myanimelist.net/anime/5114/Fullmetal_Alchemist__Brotherhood",
"rank": 3,
"type": "TV",
"year": 2009,
"score": 9.11,
"title": "Fullmetal Alchemist: Brotherhood",
"mal_id": 5114,
"status": "Finished Airing",
"members": 3696136,
"episodes": 64,
"favorites": 243370,
"scored_by": 2318784,
"title_english": "Fullmetal Alchemist: Brotherhood",
"popularity_rank": 3
},
{
"url": "https://myanimelist.net/anime/30276/One_Punch_Man",
"rank": 181,
"type": "TV",
"year": 2015,
"score": 8.47,
"title": "One Punch Man",
"mal_id": 30276,
"status": "Finished Airing",
"members": 3530194,
"episodes": 12,
"favorites": 66359,
"scored_by": 2429052,
"title_english": "One-Punch Man",
"popularity_rank": 4
},
{
"url": "https://myanimelist.net/anime/38000/Kimetsu_no_Yaiba",
"rank": 230,
"type": "TV",
"year": 2019,
"score": 8.4,
"title": "Kimetsu no Yaiba",
"mal_id": 38000,
"status": "Finished Airing",
"members": 3463012,
"episodes": 26,
"favorites": 95012,
"scored_by": 2373708,
"title_english": "Demon Slayer: Kimetsu no Yaiba",
"popularity_rank": 5
},
{
…