/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/anilist-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/anilist-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/anilist-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"service": "anilist-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/anime": "Anime detail by id.",
"GET /v1/manga": "Manga detail by id.",
"GET /v1/staff": "Staff/voice actor by id or search.",
"GET /v1/airing": "Upcoming airing schedule.",
"GET /v1/search": "Search anime or manga (query=, type=ANIME|MANGA).",
"GET /v1/seasonal": "Seasonal anime (season=, year=).",
"GET /v1/trending": "Trending now (type=).",
"GET /v1/character": "Character by id or search."
},
"description": "AniList anime & manga: search, anime/manga detail, what's trending now, the seasonal line-up, the upcoming airing schedule (next episodes with countdowns) and character & staff detail. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-08T01:20:11.819Z",
"request_id": "26bcefac-3b25-4249-8651-ebcb45a8e16e"
},
"status": "ok",
"message": "Meta",
"success": true
}