Endpoint Playground
Test Crawlora's Twitch channel 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/channel?login=<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| login | string | Yes | Twitch channel login (the lowercase URL slug, e.g. caedrel for twitch.tv/caedrel) |
{
"code": 200,
"msg": "OK",
"data": {
"id": "92038375",
"login": "caedrel",
"is_partner": true,
"profile_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/483a37ac-58fd-4e2f-8dc3-2c68a0164112-profile_image-70x70.png",
"primary_color_hex": "8205B3",
"primary_team": {
"id": "1366421358",
"name": "Yume Talent"
},
"last_broadcast_title": "LCK T1 VS DK - T1 HOMEGROUND",
"is_live": true,
"stream": {
"id": "317457454434",
"started_at": "2026-08-14T07:18:46Z",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
}
}
}
}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 profile (partner status, team, last broadcast title) plus its current live status (started time and game/category, when live). Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "92038375",
"login": "caedrel",
"is_partner": true,
"profile_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/483a37ac-58fd-4e2f-8dc3-2c68a0164112-profile_image-70x70.png",
"primary_color_hex": "8205B3",
"primary_team": {
"id": "1366421358",
"name": "Yume Talent"
},
"last_broadcast_title": "LCK T1 VS DK - T1 HOMEGROUND",
"is_live": true,
"stream": {
"id": "317457454434",
"started_at": "2026-08-14T07:18:46Z",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
}
}
}
}curl "https://api.crawlora.net/api/v1/twitch/channel?login=<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"