/v1/channel
One channel's stats and live state
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}