Endpoint Playground
Test Crawlora's Twitch schedule 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/schedule?channel=<channel>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| channel | string | Yes | Twitch channel login (the lowercase URL slug) | |
| weeks | integer | No | Number of weeks ahead to return, starting today (default 1, max 4) |
{
"code": 200,
"msg": "OK",
"data": {
"channel": "caedrel",
"count": 5,
"next_segment_id": "eyJzZWdtZW50SUQiOiJkYjgzMmNiYi1lMmUzLTQzODUtOTRiYS1iNTQ4MTk2M2E4ODkiLCJpc29ZZWFyIjoyMDI2LCJpc29XZWVrIjozM30=",
"next_segment_at": "2026-08-15T12:00:00Z",
"segments": [
{
"id": "eyJzZWdtZW50SUQiOiI3YmJmYzA3OC00Nzg3LTQzMWEtOWQ4Yy0xNDRjYmI3YWRkOWIiLCJpc29ZZWFyIjoyMDI2LCJpc29XZWVrIjozM30=",
"title": "LEC",
"start_at": "2026-08-10T12:00:00Z",
"end_at": "2026-08-10T19:00:00Z",
"is_cancelled": false,
"categories": [
{
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/21779-144x192.jpg"
}
]
}
]
}
}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 a Twitch channel's upcoming broadcast schedule -- planned segments with title, start/end time, and game/category -- starting today. A channel with no schedule configured returns an empty segments list, not an error. Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"channel": "caedrel",
"count": 5,
"next_segment_id": "eyJzZWdtZW50SUQiOiJkYjgzMmNiYi1lMmUzLTQzODUtOTRiYS1iNTQ4MTk2M2E4ODkiLCJpc29ZZWFyIjoyMDI2LCJpc29XZWVrIjozM30=",
"next_segment_at": "2026-08-15T12:00:00Z",
"segments": [
{
"id": "eyJzZWdtZW50SUQiOiI3YmJmYzA3OC00Nzg3LTQzMWEtOWQ4Yy0xNDRjYmI3YWRkOWIiLCJpc29ZZWFyIjoyMDI2LCJpc29XZWVrIjozM30=",
"title": "LEC",
"start_at": "2026-08-10T12:00:00Z",
"end_at": "2026-08-10T19:00:00Z",
"is_cancelled": false,
"categories": [
{
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends",
"box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/21779-144x192.jpg"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/schedule?channel=<channel>" \
-H "x-api-key: $CRAWLORA_API_KEY"