/v1/manga/chapters
A manga's chapter feed
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/chapters" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangadex-api/v1/manga/chapters", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangadex-api/v1/manga/chapters");
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/chapters",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 30,
"total": 419,
"chapters": [
{
"id": "6310f6a1-17ee-4890-b837-2ec1b372905b",
"url": "https://mangadex.org/chapter/6310f6a1-17ee-4890-b837-2ec1b372905b",
"pages": 94,
"title": "The Black Swordsman",
"volume": "1",
"chapter": "0.01",
"language": "en",
"manga_id": "801513ba-a712-498c-8f57-cae55b38cc92",
"publish_at": "2018-01-31T07:07:06+00:00",
"readable_at": "2018-01-31T07:07:06+00:00",
"external_url": null,
"scanlation_group": "Band of the Hawks"
},
{
"id": "da63389a-3d60-4634-8652-47a52e35eacc",
"url": "https://mangadex.org/chapter/da63389a-3d60-4634-8652-47a52e35eacc",
"pages": 69,
"title": "The Brand",
"volume": "1",
"chapter": "0.02",
"language": "en",
"manga_id": "801513ba-a712-498c-8f57-cae55b38cc92",
"publish_at": "2018-01-31T07:13:08+00:00",
"readable_at": "2018-01-31T07:13:08+00:00",
"external_url": null,
"scanlation_group": "Band of the Hawks"
},
{
"id": "0ef160be-d552-471e-a841-a027b3410430",
"url": "https://mangadex.org/chapter/0ef160be-d552-471e-a841-a027b3410430",
"pages": 58,
"title": "The Guardians of Desire (1)",
"volume": "1",
"chapter": "0.03",
"language": "en",
"manga_id": "801513ba-a712-498c-8f57-cae55b38cc92",
"publish_at": "2018-01-31T07:14:12+00:00",
"readable_at": "2018-01-31T07:14:12+00:00",
"external_url": null,
"scanlation_group": "Band of the Hawks"
},
{
"id": "996b6b09-692f-4e85-ace3-1619772be2c7",
"url": "https://mangadex.org/chapter/996b6b09-692f-4e85-ace3-1619772be2c7",
"pages": 118,
"title": "The Guardians of Desire (2) (LQ)",
"volume": "2",
"chapter": "0.04",
"language": "en",
"manga_id": "801513ba-a712-498c-8f57-cae55b38cc92",
"publish_at": "2018-01-31T07:21:18+00:00",
"readable_at": "2018-01-31T07:21:18+00:00",
"external_url": null,
"scanlation_group": "Band of the Hawks"
},
{
"id": "0674fdf5-d93e-412d-8c59-e46daa432d77",
"url": "https://mangadex.org/chapter/0674fdf5-d93e-412d-8c59-e46daa432d77",
"pages": 107,
"title": "The Guardians of Desire (3) (LQ)",
"volume": "2",
"chapter": "0.05",
"l
…