/v1/meta
Spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}