/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}