Endpoint Playground
Test Crawlora's Twitch streams API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/twitch/streams?game=<game>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| game | string | Yes | Twitch game/category slug (the lowercase URL slug from twitch.tv/directory/category/{slug}) | |
| limit | integer | No | Number of streams to return (default 20, max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"game": "league-of-legends",
"count": 20,
"streams": [
{
"id": "317457454434",
"title": "LCK T1 VS DK - T1 HOMEGROUND",
"viewers_count": 59142,
"preview_image_url": "https://static-cdn.jtvnw.net/previews-ttv/live_user_caedrel-640x360.jpg",
"broadcaster": {
"id": "92038375",
"login": "caedrel",
"display_name": "Caedrel",
"is_partner": true
},
"tags": [
"English",
"LCK",
"Worlds",
"Esports"
]
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns the top currently-live streams for a Twitch game/category, ranked by viewer count: title, viewer count, broadcaster, and tags. Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"game": "league-of-legends",
"count": 20,
"streams": [
{
"id": "317457454434",
"title": "LCK T1 VS DK - T1 HOMEGROUND",
"viewers_count": 59142,
"preview_image_url": "https://static-cdn.jtvnw.net/previews-ttv/live_user_caedrel-640x360.jpg",
"broadcaster": {
"id": "92038375",
"login": "caedrel",
"display_name": "Caedrel",
"is_partner": true
},
"tags": [
"English",
"LCK",
"Worlds",
"Esports"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/streams?game=<game>" \
-H "x-api-key: $CRAWLORA_API_KEY"