Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/mangaupdates-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "search takes q (a title) and limit (1-40). series takes series_id (a numeric MangaUpdates id). releases takes q (a title) and limit (1-50). meta takes no parameters. rating is MangaUpdates' community Bayesian rating (0-10); popularity_rank values are positions (lower = more popular). A short ~5-minute cache fronts the upstream.",
        "sample": {
            "title": "One Piece",
            "rating": 8.89
        },
        "source": "MangaUpdates public v1 API (api.mangaupdates.com/v1), keyless, live",
        "service": "mangaupdates-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Search series by title (q=one piece).",
            "GET /v1/series": "One series' full profile by id (series_id=55099564912).",
            "GET /v1/releases": "Recent scanlation releases matching a title, newest first (q=one piece)."
        },
        "description": "Series data, community ratings and scanlation-release tracking from MangaUpdates (mangaupdates.com), the long-running reference database for manga, manhwa, manhua and light novels, keyless. The search endpoint finds series by title; the series endpoint returns one series' full profile by id (type, year, completion, community rating and votes, popularity rank over week/month/quarter/half-year/year, latest chapter, genres, categories, authors, publishers, description); the releases endpoint returns the most recent scanlation releases matching a title (volume, chapter, group, date), newest first. The MangaUpdates cut — distinct from MangaDex (a reader) and the anime-first databases (MyAnimeList, AniList).",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:13.061Z",
        "request_id": "700afac7-2db1-4446-b9d1-55c105c9f1cf"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}