Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/mangadex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "service": "mangadex-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/tags": "All manga tags (genres & themes).",
            "GET /v1/manga": "Manga detail by id.",
            "GET /v1/author": "Author detail by id.",
            "GET /v1/search": "Search manga by title.",
            "GET /v1/chapter": "Chapter detail by id.",
            "GET /v1/chapter/pages": "Page image URLs for a chapter (reader).",
            "GET /v1/manga/chapters": "A manga's chapter feed (lang=, order=)."
        },
        "description": "MangaDex: search manga, manga detail (cover, author, tags), a manga's chapter feed, chapter detail, a chapter's page-image URLs (reader), author detail and the tag list. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-07T16:46:54.977Z",
        "request_id": "03e8f98f-5c14-4462-a935-e42b4a66504f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}