Naar de inhoud
GET /v1/chapter

Chapter detail

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/mangadex-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}