/v1/channel
One channel's profile by channel id
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/chzzk-api/v1/channel" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chzzk-api/v1/channel", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chzzk-api/v1/channel");
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/channel",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "One CHZZK channel's profile: its follower count, verified status, description and whether it is broadcasting live right now. Live, cached ~45s.",
"source": "CHZZK public web API (api.chzzk.naver.com/service/v1/channels), keyless",
"is_live": false,
"verified": true,
"followers": 136272,
"image_url": "https://nng-phinf.pstatic.net/MjAyNjA2MDVfMjgx/MDAxNzgwNjM2MTU2OTkx.-w0g1n-oQ7Qzy-fmHiKQ5G3gtStEulzdyQPTJewsgTEg.wqahNtKPgt4GuzyB62ZkLmPxK2qUkb7BSMtjCf3oIOwg.PNG/image.png",
"channel_id": "8ecd602c251f30fd7f09463e9f55609f",
"channel_url": "https://chzzk.naver.com/8ecd602c251f30fd7f09463e9f55609f",
"description": null,
"channel_name": "북중미 월드컵 JTBC"
},
"meta": {
"timestamp": "2026-06-13T04:42:45.779Z",
"request_id": "948d0ae8-3041-48de-b736-32c1a323dd01"
},
"status": "ok",
"message": "Channel retrieved successfully",
"success": true
}