Zum Inhalt springen
GET /v1/title

One webtoon full profile by title id

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/naverwebtoon-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "url": "https://comic.naver.com/webtoon/list?titleId=758037",
        "note": "One Naver webtoon's profile: its authors, subscriber (favourite) count — the platform's popularity metric — genre tags, age rating, the days it publishes, whether it has finished and its synopsis. Titles, authors, genres and synopsis are Korean as Naver publishes them. Live, cached ~5m.",
        "title": "참교육",
        "genres": [
            "액션",
            "사이다",
            "학원액션",
            "자극적인",
            "사회고발",
            "참교육",
            "블루스트링",
            "학원물",
            "다크히어로",
            "먼치킨"
        ],
        "is_new": false,
        "source": "Naver Webtoon public API (comic.naver.com/api/article/list/info), keyless",
        "authors": [
            "채용택",
            "한가람"
        ],
        "finished": false,
        "synopsis": "무너진 교권을 지키기 위해 교권보호국 소속 나화진의 참교육이 시작된다! <부활남> 채용택 작가 X <신석기녀> 한가람 작가의 신작!",
        "title_id": 758037,
        "on_hiatus": false,
        "thumbnail": "https://image-comic.pstatic.net/webtoon/758037/thumbnail/thumbnail_IMAG21_6323d62f-2b2d-4668-9373-156f16487568.jpg",
        "age_rating": "RATE_15",
        "subscribers": 1008942,
        "publish_days": [
            "MONDAY"
        ],
        "age_rating_label": "15세 이용가"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:14.402Z",
        "request_id": "23a75708-0951-4cdd-b915-fae2b95f538c"
    },
    "status": "ok",
    "message": "Title retrieved successfully",
    "success": true
}