/v1/chapter
Chapter 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/mangadex-api/v1/chapter" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangadex-api/v1/chapter", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangadex-api/v1/chapter");
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/chapter",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chapter": {
"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"
}
},
"meta": {
"timestamp": "2026-06-07T16:46:53.697Z",
"request_id": "dc4ee263-2cc3-4ca7-88b4-1e4b6834b1e5"
},
"status": "ok",
"message": "Chapter retrieved successfully",
"success": true
}