Skip to content
GET /v1/weekday

Webtoons serialised on a day, ranked by readership

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/naverwebtoon-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "day": "mon",
        "note": "The webtoons that update on MONDAY, ranked by readership (Naver's popularity order). Each carries its title, author, reader star_score (0-10) and status flags: is_new, updated_today, finished, on_hiatus and adult (19+). Titles and authors are Korean as Naver publishes them. Naver does not expose raw view counts here, so none are reported. Pass limit (1-120). Live, cached ~5m.",
        "count": 60,
        "source": "Naver Webtoon public API (comic.naver.com/api/webtoon/titlelist/weekday), keyless",
        "webtoons": [
            {
                "url": "https://comic.naver.com/webtoon/list?titleId=758037",
                "adult": false,
                "title": "참교육",
                "author": "채용택 / 한가람",
                "is_new": false,
                "finished": false,
                "title_id": 758037,
                "on_hiatus": false,
                "thumbnail": "https://image-comic.pstatic.net/webtoon/758037/thumbnail/thumbnail_IMAG21_6323d62f-2b2d-4668-9373-156f16487568.jpg",
                "star_score": 9.89,
                "updated_today": false
            },
            {
                "url": "https://comic.naver.com/webtoon/list?titleId=844058",
                "adult": true,
                "title": "신체",
                "author": "엄세윤 / 정썸머",
                "is_new": false,
                "finished": false,
                "title_id": 844058,
                "on_hiatus": false,
                "thumbnail": "https://image-comic.pstatic.net/webtoon/844058/thumbnail/thumbnail_IMAG21_18e663e7-b2bc-4c26-8163-ea7fb31b64a9.jpg",
                "star_score": 9.9,
                "updated_today": false
            },
            {
                "url": "https://comic.naver.com/webtoon/list?titleId=822657",
                "adult": false,
                "title": "환생천마",
                "author": "JP / 부겸 / 장영훈",
                "is_new": false,
                "finished": false,
                "title_id": 822657,
                "on_hiatus": false,
                "thumbnail": "https://image-comic.pstatic.net/webtoon/822657/thumbnail/thumbnail_IMAG21_99e49512-e05d-48c3-846d-d898f78523df.jpg",
                "star_score": 9.95,
                "updated_today": false
            },
            {
                "url": "https://comic.naver.com/webtoon/list?titleId=840014",
                "adult": false,
                "title": "샤MONEY즘",
                "author": "나락 / 영기",
                "is_new": false,
                "finished": false,
                "title_id": 840014,
                "on_hiatus": false,
                "thumbnail": "https://image-comic.pstatic.net/webtoon/840014/thumbnail/thumbnail_IMAG21_d0d4b1c4-bfe7-43e5-8f02-0a911652e2dc.jpg",
                "star_score": 9.94,
                "updated_today": false
            },
            {
                "url": "https://comic.naver.com/webtoon/list?titleId=796075",
                "adult": false,
  
…