/v1/latest
The whole platform's recent releases firehose
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/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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
…