Skip to content
GET /v1/meta

Service metadata

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

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

Get an API key

Code snippets

curl "https://api.oanor.com/chzzk-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chzzk-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chzzk-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/chzzk-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": "live takes limit (1-50, default 25). categories and meta take no parameters. channel takes channel_id (a 32-char hex CHZZK channel id, required). search takes q (required) and limit. Viewer counts are concurrent (live) integers; accumulated_viewers is this broadcast's cumulative total; follower counts are live. Broadcast start times are KST as reported; durations computed in minutes. A short ~45-second cache fronts the upstream.",
        "sample": {
            "viewers": 11237,
            "category": "종합 게임",
            "top_channel": "한동숙"
        },
        "source": "CHZZK public web API (api.chzzk.naver.com/service/v1), keyless, live",
        "service": "chzzk-api",
        "endpoints": {
            "GET /v1/live": "Top streams live now, ranked by viewers (limit).",
            "GET /v1/meta": "This document.",
            "GET /v1/search": "Search channels by keyword (q=...).",
            "GET /v1/channel": "One channel's profile by channel_id.",
            "GET /v1/categories": "Top live streams aggregated by category."
        },
        "description": "Live data from CHZZK (chzzk.naver.com), the Korean live-streaming platform built and run by Naver that rose after Twitch left Korea and is now one of the country's two big streaming platforms alongside SOOP, from its public web API (no key). The live endpoint lists the streams on air now ranked by viewers (channel, title, viewers, category, live duration); categories aggregates the top live streams by game/genre; channel returns one channel's profile by id (followers, verified, description, live status); search finds channels by keyword. The CHZZK platform cut — a distinct social/streaming platform, separate from the SOOP, SHOWROOM, Niconico, Twitch, Kick, Bilibili and other feeds.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:46.281Z",
        "request_id": "2d950ade-e8ce-494a-8c3a-ff7204767a64"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}