/v1/live
Top live streams across Kick right now
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/kick-api/v1/live" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kick-api/v1/live", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kick-api/v1/live");
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/live",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "The top live streams on Kick right now, ranked by viewer count — who is being watched across the whole platform, with each stream's title, category, language and how long it has been live. Pass limit (1-50, default 20). Live, cached ~30s.",
"count": 20,
"source": "Kick public web API (kick.com/stream/livestreams), via proxy",
"streams": [
{
"slug": "forg1",
"title": "9z Globant vs. Vitality | IEM Cologne Major 2026 - Stage 3",
"viewers": 78728,
"category": "Counter-Strike 2",
"language": "Spanish",
"username": "forg1",
"is_mature": false,
"started_at": "2026-06-12 08:01:19",
"channel_url": "https://kick.com/forg1"
},
{
"slug": "odablock",
"title": "DMM ALLSTARS | !socials !discord !youtube !allstars",
"viewers": 44532,
"category": "Old School RuneScape",
"language": "English",
"username": "Odablock",
"is_mature": false,
"started_at": "2026-06-12 09:43:24",
"channel_url": "https://kick.com/odablock"
},
{
"slug": "absi",
"title": "#ستين_عالسكرين_Day5📺⏰",
"viewers": 42533,
"category": "IRL",
"language": "Arabic",
"username": "Absi",
"is_mature": false,
"started_at": "2026-06-11 23:43:58",
"channel_url": "https://kick.com/absi"
},
{
"slug": "maherco",
"title": "تكملة الدولاب وفيسكام",
"viewers": 39649,
"category": "Fall Guys",
"language": "Arabic",
"username": "Maherco",
"is_mature": false,
"started_at": "2026-06-12 18:13:01",
"channel_url": "https://kick.com/maherco"
},
{
"slug": "solomission",
"title": "OFFICIAL DEADMAN ALLSTARS SPECTATOR STREAM !mission !breach !allstars !highlights",
"viewers": 37779,
"category": "Old School RuneScape",
"language": "English",
"username": "SoloMission",
"is_mature": false,
"started_at": "2026-06-12 10:34:24",
"channel_url": "https://kick.com/solomission"
},
{
"slug": "jaser",
"title": "MT , Where Dreams Come True",
"viewers": 35804,
"category": "Grand Theft Auto V (GTA)",
"language": "Arabic",
"username": "JASER",
"is_mature": false,
"started_at": "2026-06-12 18:07:14",
"channel_u
…