/v1/search
Search anime/manga
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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": "葬送のフリーレン ~●●の魔法~",
…