/v1/calendar
Anime airing each day of the week
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/bangumi-api/v1/calendar" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bangumi-api/v1/calendar", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bangumi-api/v1/calendar");
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/calendar",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"days": [
{
"anime": [
{
"id": 377130,
"name": "とんがり帽子のアトリエ",
"score": 6.7,
"name_cn": "尖帽子的魔法工房",
"score_votes": 2164
},
{
"id": 405232,
"name": "大道独行之蝶龙变",
"score": 4.9,
"name_cn": "大道独行之蝶龙变",
"score_votes": 7
},
{
"id": 551123,
"name": "ポンコツ風紀委員とスカート丈が不適切なJKの話",
"score": 7.1,
"name_cn": "木头风纪委员和迷你裙JK的故事",
"score_votes": 988
},
{
"id": 553949,
"name": "Star Wars: Maul - Shadow Lord",
"score": 7.2,
"name_cn": "星球大战:摩尔 - 暗影领主",
"score_votes": 23
},
{
"id": 558088,
"name": "自称悪役令嬢な婚約者の観察記録。",
"score": 6.4,
"name_cn": "自称恶役大小姐的婚约者观察记录。",
"score_votes": 319
},
{
"id": 575057,
"name": "異世界のんびり農家2",
"score": 6.6,
"name_cn": "异世界悠闲农家 第二季",
"score_votes": 497
},
{
"id": 580133,
"name": "LIAR GAME",
"score": 5.7,
"name_cn": "欺诈游戏",
"score_votes": 522
},
{
"id": 638082,
"name": "ほっかいどうぶつ",
"score": null,
"name_cn": null,
"score_votes": null
},
{
"id": 643061,
"name": "Kevin",
"score": 6,
"name_cn": "小猫凯文",
"score_votes": 1
}
],
"count": 9,
"weekday": "Mon",
"weekday_id": 1
},
{
"anime": [
{
"id": 409468,
"name": "左ききのエレン",
"score": 6.4,
"name_cn": "左撇子艾伦",
"score_votes": 424
},
{
"id": 456079,
"name": "クラスで2番目に可愛い女の子と友だちになった",
"score": 5.8,
…