/v1/manga
Manga 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/mangadex-api/v1/manga" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangadex-api/v1/manga", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangadex-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/mangadex-api/v1/manga",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"manga": {
"id": "801513ba-a712-498c-8f57-cae55b38cc92",
"url": "https://mangadex.org/title/801513ba-a712-498c-8f57-cae55b38cc92",
"tags": [
{
"id": "0a39b5a1-b235-4886-a747-1d05d216532d",
"name": "Award Winning",
"group": "format"
},
{
"id": "36fd93ea-e8b8-445e-b836-358f02b3d33d",
"name": "Monsters",
"group": "theme"
},
{
"id": "391b0423-d847-456f-aff0-8b0cfc03066b",
"name": "Action",
"group": "genre"
},
{
"id": "39730448-9a5f-48a2-85b0-a70db87b1233",
"name": "Demons",
"group": "theme"
},
{
"id": "3b60b75c-a2d7-4860-ab56-05f391bb889c",
"name": "Psychological",
"group": "genre"
},
{
"id": "87cc87cd-a395-47af-b27a-93258283bbc6",
"name": "Adventure",
"group": "genre"
},
{
"id": "97893a4c-12af-4dac-b6be-0dffb353568e",
"name": "Sexual Violence",
"group": "content"
},
{
"id": "ac72833b-c4e9-4878-b9db-6c8a4a99444a",
"name": "Military",
"group": "theme"
},
{
"id": "b1e97889-25b4-4258-b28b-cd7f4d28ea9b",
"name": "Philosophical",
"group": "genre"
},
{
"id": "b29d6a3d-1569-4e7a-8caf-7557bc92cd5d",
"name": "Gore",
"group": "content"
},
{
"id": "b9af3a63-f058-46de-a9a0-e0c13906197a",
"name": "Drama",
"group": "genre"
},
{
"id": "cdad7e68-1419-41dd-bdce-27753074a640",
"name": "Horror",
"group": "genre"
},
{
"id": "cdc58593-87dd-415e-bbc0-2ec27bf404cc",
"name": "Fantasy",
"group": "genre"
}
],
"year": 1989,
"cover": "https://uploads.mangadex.org/covers/801513ba-a712-498c-8f57-cae55b38cc92/81e1c82d-6672-400c-8c58-4ff9bfb89031.jpg",
"links": {
"al": "30002",
"ap": "berserk",
"bl": "181526",
"bw": "series/16664/list",
"kt": "8",
"mu": "njeqwry",
"amz": "https://www.amazon.co
…