/v1/manga
Manga detail
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/manga" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/anilist-api/v1/manga", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/anilist-api/v1/manga");
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/manga",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"manga": {
"id": 30002,
"url": "https://anilist.co/manga/30002",
"tags": [
{
"name": "Tragedy",
"rank": 97
},
{
"name": "Seinen",
"rank": 95
},
{
"name": "Male Protagonist",
"rank": 94
},
{
"name": "Revenge",
"rank": 94
},
{
"name": "Demons",
"rank": 92
},
{
"name": "Gore",
"rank": 88
},
{
"name": "Philosophy",
"rank": 86
},
{
"name": "Found Family",
"rank": 86
},
{
"name": "Anti-Hero",
"rank": 83
},
{
"name": "Travel",
"rank": 83
},
{
"name": "Swordplay",
"rank": 82
},
{
"name": "Survival",
"rank": 82
},
{
"name": "War",
"rank": 81
},
{
"name": "Body Horror",
"rank": 80
},
{
"name": "Foreign",
"rank": 78
}
],
"type": "MANGA",
"year": null,
"cover": "https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx30002-Cul4OeN7bYtn.jpg",
"title": "Berserk",
"banner": "https://s4.anilist.co/file/anilistcdn/media/manga/banner/30002-3TuoSMl20fUX.jpg",
"format": "MANGA",
"genres": [
"Action",
"Adventure",
"Drama",
"Fantasy",
"Horror",
"Psychological"
],
"season": null,
"source": "ORIGINAL",
"status": "RELEASING",
"studios": [],
"trailer": "https://youtu.be/uam9bo293-w",
"volumes": null,
"chapters": null,
"end_date": null,
"episodes": null,
"is_adult": false,
"favourites": 40063,
"mean_score": 92,
"popularity": 236737,
"start_date": "1989-08-25",
"description": "His name is Guts, the Black Swordsman, a feared warrior spoken of only in whispers. Bearer of a gigantic sword, an iron hand, and the scars of countless battles and tortures, his flesh is also indel
…