Install
openclaw skills install @scavio-ai/twitch-apiPull 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.
openclaw skills install @scavio-ai/twitch-apiPull a Twitch channel's profile and live status, list its videos, read its stream schedule, and resolve a clip to its downloadable MP4 qualities. All endpoints return structured JSON.
Use this skill when the user asks to:
Get a free API key at scavio.dev (50 free credits to get started, no card required):
export SCAVIO_API_KEY=sk_live_your_key
Every request is a POST with a JSON body and:
Authorization: Bearer $SCAVIO_API_KEY
Base URL: https://api.scavio.dev. Every Twitch endpoint costs 1 credit.
| Endpoint | Credits | What it returns |
|---|---|---|
POST /api/v1/twitch/profile | 1 | A channel's profile, follower count, live status and current stream |
POST /api/v1/twitch/user/videos | 1 | A channel's VODs / highlights / uploads, paginated and sortable |
POST /api/v1/twitch/user/schedule | 1 | A channel's stream schedule segments (null when the channel has none) |
POST /api/v1/twitch/clip | 1 | A single clip's metadata and directly-downloadable MP4 qualities |
/profile) and Schedule (/user/schedule)| Parameter | Type | Default | Description |
|---|---|---|---|
handle | string | required | Username, @handle, or a twitch.tv/<user> URL |
/user/videos)| Parameter | Type | Default | Description |
|---|---|---|---|
handle | string | required | Username, @handle, or a twitch.tv/<user> URL |
type | string | ARCHIVE | ARCHIVE (past broadcasts), HIGHLIGHT, UPLOAD, PAST_PREMIERE |
sort_by | string | TIME | TIME (newest first) or VIEWS |
first | integer | 30 | Videos per page, 1-100 |
cursor | string | -- | Pagination cursor from a previous response (see the note below) |
/clip)| Parameter | Type | Default | Description |
|---|---|---|---|
clip | string | required | Clip slug or clip URL (clips.twitch.tv/<slug> or twitch.tv/<channel>/clip/<slug>) |
Twitch does not allow anonymous pagination past the first page of videos. The first page (up to 100 with first) covers any channel with 100 or fewer videos of the requested type. If you need more than the first page, request a larger first (up to 100) rather than passing cursor - a cursor past page 1 returns a 422 telling you exactly this.
import requests
BASE = "https://api.scavio.dev"
# Your key from https://scavio.dev. Load it from your environment or secret
# store in real code - keep it out of source control.
API_KEY = "sk_your_key_here"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# 1. Is the channel live, and how many followers?
profile = requests.post(f"{BASE}/api/v1/twitch/profile", headers=HEADERS,
json={"handle": "shroud"}).json()
# 2. The channel's 100 most-viewed highlights
videos = requests.post(f"{BASE}/api/v1/twitch/user/videos", headers=HEADERS,
json={"handle": "shroud", "type": "HIGHLIGHT", "sort_by": "VIEWS",
"first": 100}).json()
# 3. Resolve a clip to downloadable MP4 qualities
clip = requests.post(f"{BASE}/api/v1/twitch/clip", headers=HEADERS,
json={"clip": "DeliciousDelightfulPicklesWOOP"}).json()
curl:
curl -s https://api.scavio.dev/api/v1/twitch/profile \
-H "Authorization: Bearer $SCAVIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"handle":"pokimane"}'
Every response uses the envelope { data, response_time, credits_used, credits_remaining }. data carries the profile / videos[] / schedule / clip payload described above.
400 (bad input) and a 404 (unknown channel or clip) cost nothing - only a fully-served response is billed.first (up to 100); do not page with cursor, which is gated past page 1 and returns a 422.schedule: null - that is a valid answer, not an error.400 means an invalid or missing parameter. Fix and retry.401 means the API key is invalid or missing. Check SCAVIO_API_KEY.404 means the channel or clip does not exist.422 means you asked for video pagination past the first page - raise first instead of using cursor.429 means rate or usage limit exceeded. Wait before retrying. See rate limits.502 means the source is temporarily unavailable - wait a few seconds and retry.SCAVIO_API_KEY is not set, prompt the user to export it before continuing.