/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/bangumi-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bangumi-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bangumi-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/bangumi-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": "search takes q (a title), optional type (book/anime/music/game/real), sort (match/rank/score/heat, default match) and limit (1-30). subject takes id (a numeric Bangumi subject id). calendar and meta take no parameters. score is the community rating (0-10); rank is the overall popularity rank; collection counts are how many users wish/doing/collect/on-hold/dropped. Adult titles are excluded from search (public API is SFW); nsfw is flagged on subject. A short ~5-minute cache fronts the upstream.",
"sample": {
"name": "恶魔城 被夺走的刻印",
"rank": 791,
"score": 7.8
},
"source": "Bangumi public v0 API (api.bgm.tv), keyless, live",
"service": "bangumi-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/search": "Search subjects by keyword (q=witcher, type=game).",
"GET /v1/subject": "One subject's full profile by id (id=25).",
"GET /v1/calendar": "Anime airing each day of the week."
},
"description": "Subject ratings, rankings and collection stats from Bangumi (bgm.tv), the Chinese cross-media community database for anime, books/manga, music, games and live-action drama, keyless. The search endpoint finds subjects by keyword (optional medium filter, sort by rank/match/score); the subject endpoint returns one title's full profile by id (names, medium, community score and votes, overall rank, the wish/doing/collect/on-hold/dropped collection breakdown, tags, summary); the calendar endpoint returns the anime airing each weekday. The Bangumi cut — distinct from the anime-first databases (MyAnimeList, AniList) and the other media feeds; it spans all media with Chinese community metrics.",
"media_types": [
"book",
"anime",
"music",
"game",
"real"
],
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T04:42:10.705Z",
"request_id": "5ec28ff0-b861-41f3-b425-ab48e129754e"
},
"status": "ok",
"message": "Meta",
"success": true
}