Vai al contenuto
GET /v1/search

Search Kick channels by name

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/kick-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Kick channels matching a search term, with each channel's follower count, verified status and whether it is live. Live, cached ~30s.",
        "count": 20,
        "query": "xqc",
        "source": "Kick public web API (kick.com/api/search), via proxy",
        "results": [
            {
                "slug": "xqc",
                "is_live": false,
                "username": "xQc",
                "verified": true,
                "followers": 1078438,
                "channel_url": "https://kick.com/xqc"
            },
            {
                "slug": "xqcisoffline",
                "is_live": false,
                "username": "xqcisoffline",
                "verified": false,
                "followers": 907,
                "channel_url": "https://kick.com/xqcisoffline"
            },
            {
                "slug": "latruiexqc",
                "is_live": false,
                "username": "LaTruiexQc",
                "verified": false,
                "followers": 497,
                "channel_url": "https://kick.com/latruiexqc"
            },
            {
                "slug": "xqcow-waiting-room-x",
                "is_live": false,
                "username": "xQcOW_waiting_room_X",
                "verified": false,
                "followers": 425,
                "channel_url": "https://kick.com/xqcow-waiting-room-x"
            },
            {
                "slug": "prophetxqc",
                "is_live": false,
                "username": "ProphetxQc",
                "verified": false,
                "followers": 250,
                "channel_url": "https://kick.com/prophetxqc"
            },
            {
                "slug": "xqc247",
                "is_live": false,
                "username": "xqc247",
                "verified": false,
                "followers": 130,
                "channel_url": "https://kick.com/xqc247"
            },
            {
                "slug": "onixqc",
                "is_live": false,
                "username": "OnixQC",
                "verified": false,
                "followers": 129,
                "channel_url": "https://kick.com/onixqc"
            },
            {
                "slug": "xqcshadows",
                "is_live": false,
                "username": "xQcShadows",
                "verified": false,
                "followers": 120,
                "channel_url": "https://kick.com/xqcshadows"
            },
            {
                "slug": "zaraxqc",
                "is_live": false,
                "username": "zaraxqc",
                "verified": false,
                "followers": 97,
                "channel_url": "https://kick.com/zaraxqc"
            },
            {
                "slug": "xqcgamba",
                "is_live": false,
                "username": "xqcgamba",
                "verified": false,
                "followers": 82,
                "channel_url": "https://kick.com/xqcgamba"

…