Ir al contenido
GET /v1/channel

One channel's profile by channel id

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/chzzk-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

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