Zum Inhalt springen
GET /v1/search

Search anime/manga

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

Beispiel-Response

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

{
    "data": {
        "type": "ANIME",
        "count": 6,
        "query": "frieren",
        "results": [
            {
                "id": 154587,
                "type": "ANIME",
                "year": 2023,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx154587-qQTzQnEJJ3oB.jpg",
                "score": 91,
                "title": "Frieren: Beyond Journey’s End",
                "format": "TV",
                "genres": [
                    "Adventure",
                    "Drama",
                    "Fantasy"
                ],
                "season": "FALL",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 28,
                "title_native": "葬送のフリーレン",
                "title_romaji": "Sousou no Frieren"
            },
            {
                "id": 209939,
                "type": "ANIME",
                "year": 2027,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx209939-g2Njkml1rheG.jpg",
                "score": null,
                "title": "Sousou no Frieren 3rd Season",
                "format": "TV",
                "genres": [
                    "Adventure",
                    "Drama",
                    "Fantasy"
                ],
                "season": "FALL",
                "status": "NOT_YET_RELEASED",
                "chapters": null,
                "episodes": null,
                "title_native": "葬送のフリーレン 第3期",
                "title_romaji": "Sousou no Frieren 3rd Season"
            },
            {
                "id": 182255,
                "type": "ANIME",
                "year": 2026,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx182255-butzrqd4I0aC.jpg",
                "score": 88,
                "title": "Frieren: Beyond Journey’s End Season 2",
                "format": "TV",
                "genres": [
                    "Adventure",
                    "Drama",
                    "Fantasy"
                ],
                "season": "WINTER",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 10,
                "title_native": "葬送のフリーレン 第2期",
                "title_romaji": "Sousou no Frieren 2nd Season"
            },
            {
                "id": 170068,
                "type": "ANIME",
                "year": 2023,
                "cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/medium/bx170068-ijY3tCP8KoWP.jpg",
                "score": 73,
                "title": "Sousou no Frieren: ●● no Mahou",
                "format": "ONA",
                "genres": [
                    "Comedy",
                    "Fantasy"
                ],
                "season": "FALL",
                "status": "FINISHED",
                "chapters": null,
                "episodes": 12,
                "title_native": "葬送のフリーレン ~●●の魔法~",
   
…