Twitch Scraper

ENDPOINTS
GET/channels/chat-settings

Chat Settings

Get a channel's chat modes, slow and followers-only timers, chat rules and pinned messages.

QUERY PARAMS

Twitch channel: a login, a numeric user ID or any twitch.tv channel link.

Examples:

  • Login: xqc
  • ID: 71092938
  • URL: https://www.twitch.tv/xqc
{
  "channel": {
    "id": "71092938",
    "login": "xqc",
    "username": "xQc",
    "link": "https://www.twitch.tv/xqc",
    "profile_image": "https://static-cdn.jtvnw.net/jtv_user_pictures/xqc-profile_image-9298dca608632101-150x150.jpeg",
    "is_partner": true,
    "is_affiliate": false
  },
  "chat_settings": {
    "is_emote_only": false,
    "is_subscribers_only": false,
    "is_unique_chat": false,
    "is_fast_subs_mode": false,
    "requires_verified_account": false,
    "slow_mode_seconds": null,
    "is_slow_mode": false,
    "followers_only_minutes": 1440,
    "is_followers_only": true,
    "chat_delay_ms": 0,
    "rules": [
      "English please",
      "Fresh memes"
    ],
    "broadcaster_chat_color": "#0000FF"
  },
  "pinned_messages": []
}