Naar de inhoud
GET /v1/latest

The whole platform's recent releases firehose

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/mangaupdates-api/v1/latest" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mangaupdates-api/v1/latest", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mangaupdates-api/v1/latest");
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/mangaupdates-api/v1/latest",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "days": 1,
        "note": "Every scanlation release added to MangaUpdates in the last N days (1-7, default 1), across the whole platform — each with its series title, volume, chapter, the scanlation group(s) and the date. The site-wide release firehose (distinct from /v1/releases, which is per-title). Live, cached ~5m.",
        "count": 25,
        "source": "MangaUpdates public v1 API (api.mangaupdates.com/v1/releases/days), keyless",
        "releases": [
            {
                "title": "Surviving the Game as a Barbarian",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "147",
                "release_date": "2026-06-13"
            },
            {
                "title": "Life of a Demon Hunter",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "6",
                "release_date": "2026-06-13"
            },
            {
                "title": "Born to Be the Grand Duchess",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "32",
                "release_date": "2026-06-13"
            },
            {
                "title": "Aiming for the Alimony",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "59",
                "release_date": "2026-06-13"
            },
            {
                "title": "Archmage Curriculum",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "10",
                "release_date": "2026-06-13"
            },
            {
                "title": "My Child Will Have a Different Father",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "88",
                "release_date": "2026-06-13"
            },
            {
                "title": "Tomb Raider King",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "27",
                "release_date": "2026-06-13"
            },
            {
                "title": "The Archmage's Restaurant",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "80",
                "release_date": "2026-06-13"
            },
            {
                "title": "Miss Pendleton",
                "groups": [
                    "LINE Webtoon"
                ],
                "volume": null,
                "chapter": "51",
                "release_date": "2026-06-13"
            },
            {
                "title": "Absolu
…