Naar de inhoud
GET /v1/channel

One channel's stats and live state

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/kick-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/kick-api/v1/channel" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kick-api/v1/channel", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kick-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/kick-api/v1/channel",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "bio": "THE BEST AT ABSOLUTELY EVERYTHING. THE JUICER. LEADER OF THE JUICERS.",
        "note": "One Kick channel: its follower count, verified status, and whether it is live right now (with the live viewer count, stream title and categories when it is). bio and recent_categories describe the creator. Live data, cached ~30s.",
        "slug": "xqc",
        "source": "Kick public web API (kick.com/api/v2/channels), via proxy",
        "is_live": false,
        "user_id": 676,
        "username": "xQc",
        "verified": true,
        "followers": 1078438,
        "is_banned": false,
        "channel_id": 668,
        "livestream": null,
        "channel_url": "https://kick.com/xqc",
        "profile_pic": "https://files.kick.com/images/user/676/profile_image/conversion/931b4e8f-5445-427c-bd82-b473530390cc-fullsize.webp",
        "is_affiliate": false,
        "recent_categories": [
            "Just Chatting",
            "Slots & Casino"
        ],
        "subscription_enabled": true
    },
    "meta": {
        "timestamp": "2026-06-12T19:36:13.539Z",
        "request_id": "fc5f2ba7-699f-4b40-9f73-9752ede92a57"
    },
    "status": "ok",
    "message": "Channel retrieved successfully",
    "success": true
}