/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/naverwebtoon-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/naverwebtoon-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/naverwebtoon-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/naverwebtoon-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "weekday takes day (one of: mon, tue, wed, thu, fri, sat, sun) and limit (1-120). title takes title_id (a numeric Naver webtoon title id). meta takes no parameters. star_score is the reader rating (0-10); subscribers (favourite count) is the popularity metric — Naver does not expose raw view counts via this API. Korean text is returned as published. A short ~5-minute cache fronts Naver.",
"sample": {
"top_title": "참교육",
"star_score": 9.89
},
"source": "Naver Webtoon public API (comic.naver.com/api), keyless, live",
"service": "naverwebtoon-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/title": "One webtoon's full profile by title_id (title_id=758037).",
"GET /v1/weekday": "Webtoons serialised on a day, ranked by readership (day=mon)."
},
"description": "Live data from Naver Webtoon (comic.naver.com), the world's largest webtoon platform (home of Tower of God, Solo Leveling, Lookism and thousands more), keyless. The weekday endpoint returns the webtoons serialised on a given day (Monday-Sunday) ranked by readership — title, author, star rating and status flags; the title endpoint returns one webtoon's full profile by its Naver title id (authors, subscriber count, genres, age rating, publish days, finished status, synopsis). The Naver Webtoon platform cut — distinct from the manga feeds (MangaDex) and the other comics/social feeds; webtoons are a distinct vertical-scroll format.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T04:42:14.755Z",
"request_id": "fbf2910f-e430-46f6-8f0f-afa2c7350b09"
},
"status": "ok",
"message": "Meta",
"success": true
}