Ir al contenido
GET /v1/series

One series' full profile by id

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/mangaupdates-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "url": "https://www.mangaupdates.com/series/pb8uwds/one-piece",
        "note": "One series' full MangaUpdates profile: its type, year, completion status, community Bayesian rating and vote count, its popularity rank over the last week/month/quarter/half-year/year, latest chapter, genres, top categories, authors and publishers. rating and popularity_rank are MangaUpdates' own community metrics. Live, cached ~5m.",
        "type": "Manga",
        "year": 1997,
        "image": "https://cdn.mangaupdates.com/image/i517997.jpg",
        "title": "One Piece",
        "genres": [
            "Action",
            "Adventure",
            "Comedy",
            "Drama",
            "Fantasy",
            "Shounen"
        ],
        "rating": 8.89,
        "source": "MangaUpdates public v1 API (api.mangaupdates.com/v1/series), keyless",
        "status": "114 Volumes (Ongoing)",
        "authors": [
            "ODA Eiichiro"
        ],
        "licensed": true,
        "completed": false,
        "has_anime": true,
        "series_id": 55099564912,
        "categories": [
            "Pirate/s",
            "World Travel",
            "Special Ability/ies",
            "Adapted to Anime",
            "Teamwork",
            "Banding Together",
            "Ambitious Goal/s",
            "Sailing",
            "Treasure Hunt",
            "Ocean",
            "Extended Flashbacks",
            "Time Skip"
        ],
        "publishers": [
            "MANGA Plus",
            "Shueisha",
            "VIZ Media"
        ],
        "description": "From Viz: As a child, Monkey D. Luffy was inspired to become a pirate by listening to the tales of \"Red-Haired\" Shanks. But his life changed when Luffy accidentally ate the Gum-Gum Devil Fruit and gained the power to stretch like rubber at the cost of never being able to swim again. Years later, still vowing to become the king of the pirates, Luffy sets out on his adventure one guy alone in a rowboat, in search of the legendary \"One Piece,\" said to be the greatest treasure in the world. The best-selling manga in history and tied with Superman for the best-selling comics in history. **Original ",
        "rating_votes": 5343,
        "latest_chapter": 1184,
        "popularity_rank": {
            "week": 26,
            "year": 22,
            "month": 28,
            "six_months": 21,
            "three_months": 18
        }
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:12.323Z",
        "request_id": "c08b6924-2c67-413b-bd05-85167a6486a8"
    },
    "status": "ok",
    "message": "Series retrieved successfully",
    "success": true
}