Zum Inhalt springen
GET /v1/seasonal

Seasonal line-up

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/anilist-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/anilist-api/v1/seasonal" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/anilist-api/v1/seasonal", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/anilist-api/v1/seasonal");
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/anilist-api/v1/seasonal",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "year": 2024,
        "count": 25,
        "season": "FALL",
        "results": [
            {
                "id": 171018,
                "type": "ANIME",
                "year": 2024,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx171018-60q1B6GK2Ghb.jpg",
                "score": 83,
                "title": "DAN DA DAN",
                "format": "TV",
                "genres": [
                    "Action",
                    "Comedy",
                    "Drama",
                    "Romance",
                    "Sci-Fi",
                    "Supernatural"
                ],
                "season": "FALL",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 12,
                "title_native": "ダンダダン",
                "title_romaji": "Dandadan"
            },
            {
                "id": 163134,
                "type": "ANIME",
                "year": 2024,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx163134-yieRFbvUOH9a.jpg",
                "score": 84,
                "title": "Re:ZERO -Starting Life in Another World- Season 3",
                "format": "TV",
                "genres": [
                    "Action",
                    "Adventure",
                    "Drama",
                    "Fantasy",
                    "Psychological",
                    "Romance",
                    "Thriller"
                ],
                "season": "FALL",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 16,
                "title_native": "Re:ゼロから始める異世界生活 3rd season",
                "title_romaji": "Re:Zero kara Hajimeru Isekai Seikatsu 3rd Season"
            },
            {
                "id": 170942,
                "type": "ANIME",
                "year": 2024,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx170942-KKcLfQzV57nG.jpg",
                "score": 81,
                "title": "Blue Box",
                "format": "ONA",
                "genres": [
                    "Romance",
                    "Slice of Life",
                    "Sports"
                ],
                "season": "FALL",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 25,
                "title_native": "アオのハコ",
                "title_romaji": "Ao no Hako"
            },
            {
                "id": 163146,
                "type": "ANIME",
                "year": 2024,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx163146-BVZPgyzkqi82.png",
                "score": 75,
                "title": "BLUE LOCK Season 2",
                "format": "TV",
                "genres": [
                    "Action",
                    "Drama",
                    "Sports"
                ]
…