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.
Data & analysis
twitch-research
Try itPulls 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.
What it does
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.
The skill document
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_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
- 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. - Profile + live status:
/twitch/channel login=. - Content for that channel:
/twitch/clips login=(recent clips),/twitch/videos login=(VODs),/twitch/schedule channel=(upcoming broadcasts). - VOD chat: once you have a VOD id (from
/twitch/videosor atwitch.tv/videos/{id}URL), page through its chat replay with/twitch/vod-comments video=, advancingoffsetfrom the last comment'soffset_secondsto keep paginating. - Team rosters:
/twitch/team team=for a team's members and who's currently live. - Discovery (no channel needed up front):
/twitch/search query=to find channels/games by name;/twitch/top-gamesfor 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/schedulefor one login → a single "what's this streamer up to" summary. - VOD moment-finder:
/twitch/videosto find the VOD id →/twitch/vod-commentsstarting atoffset=0, paging forward by the last comment'soffset_seconds→ scan chat for reactions around a timestamp. - Category browse:
/twitch/top-gamesfor 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_KEYonly — never hardcode, query-param, or commit it. login/channelparams are the lowercase URL slug (e.g.caedrelfortwitch.tv/caedrel), not a display name — lowercase before calling./twitch/schedulereturns an empty segments list, not an error, when a channel has no schedule configured./twitch/searchis sourced from Twitch's search-typeahead surface — a capped suggestion list (limitmax 30), not a fully paginated results page./twitch/vod-commentspaginates by re-requesting withoffsetset to the last returned comment'soffset_seconds— there's no separate page token.
Related skills
Collect and analyze public Twitch data
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.
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.
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.
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.