/v1/anime
Anime detail
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/anime" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/anilist-api/v1/anime", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/anilist-api/v1/anime");
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/anime",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"anime": {
"id": 16498,
"url": "https://anilist.co/anime/16498",
"tags": [
{
"name": "Kaiju",
"rank": 93
},
{
"name": "Revenge",
"rank": 92
},
{
"name": "Military",
"rank": 88
},
{
"name": "Primarily Teen Cast",
"rank": 85
},
{
"name": "Post-Apocalyptic",
"rank": 84
},
{
"name": "Male Protagonist",
"rank": 83
},
{
"name": "Gore",
"rank": 76
},
{
"name": "Dystopian",
"rank": 75
},
{
"name": "Swordplay",
"rank": 75
},
{
"name": "Survival",
"rank": 73
},
{
"name": "Steampunk",
"rank": 73
},
{
"name": "Ensemble Cast",
"rank": 73
},
{
"name": "Vore",
"rank": 72
},
{
"name": "Orphan",
"rank": 72
},
{
"name": "Shounen",
"rank": 62
}
],
"type": "ANIME",
"year": 2013,
"cover": "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx16498-buvcRTBx4NSm.jpg",
"title": "Attack on Titan",
"banner": "https://s4.anilist.co/file/anilistcdn/media/anime/banner/16498-8jpFCOcDmneX.jpg",
"format": "TV",
"genres": [
"Action",
"Drama",
"Fantasy",
"Mystery"
],
"season": "SPRING",
"source": "MANGA",
"status": "FINISHED",
"studios": [
"WIT STUDIO"
],
"trailer": "https://youtu.be/LHtdKWJdif4\t",
"volumes": null,
"chapters": null,
"end_date": "2013-09-28",
"episodes": 25,
"is_adult": false,
"favourites": 80239,
"mean_score": 85,
"popularity": 1007484,
"start_date": "2013-04-07",
"description": "Several hundred years ago, humans were nearly exterminated by titans. Titans are typically several stories tall, seem to have no intelligence, devour human beings and, worst of all, se
…