Endpoint Playground
Test Crawlora's Twitch top games 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/top-games" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| limit | integer | No | Number of games to return (default 20, max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"count": 20,
"games": [
{
"id": "29595",
"slug": "dota-2",
"name": "Dota 2",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/29595-285x380.jpg",
"viewers_count": 390201,
"tags": [
"Strategy",
"MOBA",
"Action"
]
},
{
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/21779-285x380.jpg",
"viewers_count": 206554,
"tags": [
"RPG",
"Strategy",
"MOBA",
"Action"
]
}
]
}
}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 games/categories site-wide, ranked by total current viewers across all live streams under each one. Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"count": 20,
"games": [
{
"id": "29595",
"slug": "dota-2",
"name": "Dota 2",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/29595-285x380.jpg",
"viewers_count": 390201,
"tags": [
"Strategy",
"MOBA",
"Action"
]
},
{
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/21779-285x380.jpg",
"viewers_count": 206554,
"tags": [
"RPG",
"Strategy",
"MOBA",
"Action"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/top-games" \
-H "x-api-key: $CRAWLORA_API_KEY"