/v1/season
Anime airing this season, ranked by members
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/myanimelist-api/v1/season" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanimelist-api/v1/season", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanimelist-api/v1/season");
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/season",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"anime": [
{
"url": "https://myanimelist.net/anime/51553/Tongari_Boushi_no_Atelier",
"rank": 68,
"type": "TV",
"year": 2026,
"score": 8.7,
"title": "Tongari Boushi no Atelier",
"mal_id": 51553,
"status": "Currently Airing",
"members": 330256,
"episodes": 13,
"favorites": 3778,
"scored_by": 59289,
"title_english": "Witch Hat Atelier",
"popularity_rank": 855
},
{
"url": "https://myanimelist.net/anime/61316/Re_Zero_kara_Hajimeru_Isekai_Seikatsu_4th_Season",
"rank": 13,
"type": "TV",
"year": 2026,
"score": 9.02,
"title": "Re:Zero kara Hajimeru Isekai Seikatsu 4th Season",
"mal_id": 61316,
"status": "Currently Airing",
"members": 247815,
"episodes": 19,
"favorites": 3228,
"scored_by": 46348,
"title_english": "Re:ZERO -Starting Life in Another World- Season 4",
"popularity_rank": 1145
},
{
"url": "https://myanimelist.net/anime/59708/Youkoso_Jitsuryoku_Shijou_Shugi_no_Kyoushitsu_e_4th_Season__2-nensei-hen_1_Gakki",
"rank": 728,
"type": "TV",
"year": 2026,
"score": 8.01,
"title": "Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e 4th Season: 2-nensei-hen 1 Gakki",
"mal_id": 59708,
"status": "Currently Airing",
"members": 210986,
"episodes": 16,
"favorites": 1351,
"scored_by": 29112,
"title_english": "Classroom of the Elite 4th Season: Second Year, First Semester",
"popularity_rank": 1330
},
{
"url": "https://myanimelist.net/anime/59970/Tensei_shitara_Slime_Datta_Ken_4th_Season",
"rank": 563,
"type": "TV",
"year": 2026,
"score": 8.12,
"title": "Tensei shitara Slime Datta Ken 4th Season",
"mal_id": 59970,
"status": "Currently Airing",
"members": 205595,
"episodes": null,
"favorites": 1232,
"scored_by": 22345,
"title_english": "That Time I Got Reincarnated as a Slime Season 4",
"popularity_rank": 1368
},
{
"url": "https://myanimelist.net/anime/62001/Yomi_no_Tsugai",
"rank": 808,
"type": "TV",
"year": 2026,
"score": 7.96,
"title": "Yomi no Tsugai",
…