数据分析

twitch-research

试用

Pulls structured Twitch data — channel profile and live status, clips, VODs, VOD chat replay, broadcast schedule, team rosters, top games, and search — via the Crawlora API as clean JSON, with no scraping or Twitch API OAuth setup. Use when the user gives a Twitch channel/game/team and wants live status, clips, VODs, chat replay, schedule, or discovery of streamers/categories.

它能做什么

Pulls structured Twitch data — channel profile and live status, clips, VODs, VOD chat replay, broadcast schedule, team rosters, top games, and search — via the Crawlora API as clean JSON, with no scraping or Twitch API OAuth setup. Use when the user gives a Twitch channel/game/team and wants live status, clips, VODs, chat replay, schedule, or discovery of streamers/categories.

技能文档

Twitch research

Resolve Twitch channels, games/categories, and teams, and pull live status, clips, VODs, VOD chat replay, schedules, and search results as normalized JSON from the Crawlora API — no Twitch developer app, no OAuth, no scraping.

When to use this skill

  • "Is live right now, and what are they playing?"
  • "Get the top clips from ."
  • "What did chat say during ?" / VOD chat replay lookups.
  • "What's 's upcoming schedule?"
  • "Who's live in right now?" or top games site-wide.
  • "Who's on 's roster, and who's currently live?"
  • "Search Twitch for a channel or category."

Setup (one-time)

  • Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
  • export CRAWLORA_API_KEY=sk_your_key_here
  • All requests: x-api-key: $CRAWLORA_API_KEY against https://api.crawlora.net/api/v1. Missing/invalid key → 401.

How it works

  1. Resolve the channel login. A Twitch URL https://twitch.tv/ gives the channel login directly (it's already the lowercase URL slug) — no separate id-lookup step is needed.
  2. Profile + live status: /twitch/channel login=.
  3. Content for that channel: /twitch/clips login= (recent clips), /twitch/videos login= (VODs), /twitch/schedule channel= (upcoming broadcasts).
  4. VOD chat: once you have a VOD id (from /twitch/videos or a twitch.tv/videos/{id} URL), page through its chat replay with /twitch/vod-comments video=, advancing offset from the last comment's offset_seconds to keep paginating.
  5. Team rosters: /twitch/team team= for a team's members and who's currently live.
  6. Discovery (no channel needed up front): /twitch/search query= to find channels/games by name; /twitch/top-games for what's trending site-wide; /twitch/streams game= for the top live streams under one game/category.

Full endpoint list, methods, and params: reference/endpoints.md.

Calling the API

# Channel profile + live status:
scripts/crawlora.sh /twitch/channel login=caedrel | jq '.'

# Clips and VODs for a channel:
scripts/crawlora.sh /twitch/clips login=caedrel limit=10 | jq '.clips[] | {title, views}'
scripts/crawlora.sh /twitch/videos login=lck limit=10 | jq '.'

# Top games, then top streams under one:
scripts/crawlora.sh /twitch/top-games limit=10 | jq '.'
scripts/crawlora.sh /twitch/streams game=league-of-legends limit=10 | jq '.'

# VOD chat replay, paginating by offset_seconds:
scripts/crawlora.sh /twitch/vod-comments video=1234567890 offset=0 | jq '.'

Raw curl fallback:

curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
  "https://api.crawlora.net/api/v1/twitch/channel?login=caedrel" | jq '.'

Endpoint reference

See reference/endpoints.md for every Twitch endpoint this skill uses (method, path, params, description).

Examples

  • Channel digest: /twitch/channel (live status) + /twitch/clips + /twitch/schedule for one login → a single "what's this streamer up to" summary.
  • VOD moment-finder: /twitch/videos to find the VOD id → /twitch/vod-comments starting at offset=0, paging forward by the last comment's offset_seconds → scan chat for reactions around a timestamp.
  • Category browse: /twitch/top-games for the top categories → /twitch/streams game= on the one of interest → surface the top live streamers under it by viewer count.

Notes & limits

  • Credits / pay-on-success: billed only on 2xx; free tier 2,000 credits/mo. Key at https://crawlora.net.
  • Public data only — public Twitch pages/GraphQL surface; respect Twitch's terms.
  • Security: key lives in CRAWLORA_API_KEY only — never hardcode, query-param, or commit it.
  • login/channel params are the lowercase URL slug (e.g. caedrel for twitch.tv/caedrel), not a display name — lowercase before calling.
  • /twitch/schedule returns an empty segments list, not an error, when a channel has no schedule configured.
  • /twitch/search is sourced from Twitch's search-typeahead surface — a capped suggestion list (limit max 30), not a fully paginated results page.
  • /twitch/vod-comments paginates by re-requesting with offset set to the last returned comment's offset_seconds — there's no separate page token.

相关技能

Pull a Twitch channel's profile and live status, list its VODs / highlights / uploads, read its stream schedule, and resolve a clip to downloadable MP4 qualities. 4 endpoints, 1 credit each, structured JSON.

Pulls structured YouTube data — video and channel details, transcripts/captions, comments, playlists, and search — via the Crawlora API as clean JSON, with no yt-dlp or HTML scraping. Use when the user provides a YouTube URL or asks for a transcript, comments, channel/video metadata, or video search results.

1 次安装

Researches social-media profiles, posts, and engagement across Instagram, TikTok, Threads, Bluesky, X, Pinterest, LinkedIn, Facebook, and Reddit via the Crawlora API, returning clean JSON. Use when the user wants a public profile's stats, a post's content/engagement, a platform search, trending topics, or social listening/competitor research — instead of scraping each app.

3 次安装

Researches public Threads (Meta) profiles, posts, replies, and search results via the Crawlora API, returning clean JSON. Use when the user wants a Threads profile's stats, a post's content/replies, a profile's recent posts, or a keyword search on Threads — instead of scraping the app.

1 次安装

Researches TikTok profiles, videos, hashtags, search, trending content, and Creative Center ads intelligence via the Crawlora API, returning clean JSON. Use when the user wants a TikTok creator's profile/videos, hashtag or keyword search, trending hashtags/videos, or competitor ad analysis from TikTok Top Ads — instead of scraping TikTok or the Creative Center directly.

1 次安装