/v1/meta
Service metadata
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/myanimelist-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/myanimelist-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/myanimelist-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/myanimelist-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Look up a title by its MAL id (try id=52991, Frieren). top accepts filter=airing|upcoming|bypopularity|favorite. Results are cached briefly because the upstream rate-limits.",
"source": "Jikan, the unofficial MyAnimeList API (api.jikan.moe/v4, live)",
"service": "myanimelist-api",
"endpoints": {
"GET /v1/top": "Top-ranked anime (filter=airing|upcoming|bypopularity|favorite, optional).",
"GET /v1/meta": "This document.",
"GET /v1/anime": "Title snapshot — MAL score, rank, members, favourites (id=52991).",
"GET /v1/stats": "Community engagement breakdown and 1-10 score distribution (id=52991).",
"GET /v1/season": "Anime airing this season, ranked by members."
},
"description": "Live anime community stats from MyAnimeList, the world's largest anime and manga community, via the public Jikan feed. The MAL community view — a title's MAL score, member counts, ranking and the full engagement breakdown. anime = a title snapshot (MAL score, how many scored it, rank, popularity rank, members, favourites, status, episodes, year); stats = the community engagement breakdown (watching, completed, on-hold, dropped, plan-to-watch) plus the full 1-10 score distribution with vote counts and percentages; top = the top-ranked anime (by score, or filtered by airing/upcoming/popularity/favourites); season = the anime airing this season ranked by members. Live, no key, nothing stored. Distinct from the other anime platforms — its own score, community and rankings.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:34.285Z",
"request_id": "14597f39-dee9-47fd-aa7d-47140f753ffd"
},
"status": "ok",
"message": "Meta",
"success": true
}