/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}