Kick Scraper

ENDPOINTS
GET/channels/status/batch

Batch Live Status

Live status for up to 25 channels in one call. Unknown channels come back flagged instead of failing.

QUERY PARAMS

Comma-separated channel slugs or kick.com URLs, up to 25.

Example: xqc,adinross,trainwreckstv

{
  "live_count": 0,
  "count": 3,
  "channels": [
    {
      "channel": "xqc",
      "link": "https://kick.com/xqc",
      "is_live": false,
      "livestream": null
    },
    {
      "channel": "adinross",
      "link": "https://kick.com/adinross",
      "is_live": false,
      "livestream": null
    },
    {
      "channel": "trainwreckstv",
      "link": "https://kick.com/trainwreckstv",
      "is_live": false,
      "livestream": null
    }
  ]
}