Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/chzzk-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}