Endpoint Playground
Test Crawlora's Twitch videos 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/videos?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. lck for twitch.tv/lck) | |
| limit | integer | No | Number of videos to return (default 20, max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"login": "lck",
"count": 20,
"videos": [
{
"id": "1443936760",
"title": "T1 vs GEN | 2022 LCK Spring FINALS",
"view_count": 2800795,
"length_seconds": 20818,
"published_at": "2022-04-02T07:10:16Z",
"thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/.../thumb0-320x180.jpg",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
},
"owner": {
"id": "124425501",
"login": "lck",
"display_name": "LCK",
"is_partner": true
}
}
]
}
}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 past-broadcast videos (VODs), ranked by view count: title, view count, length, publish date, and the game it was recorded under. Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"login": "lck",
"count": 20,
"videos": [
{
"id": "1443936760",
"title": "T1 vs GEN | 2022 LCK Spring FINALS",
"view_count": 2800795,
"length_seconds": 20818,
"published_at": "2022-04-02T07:10:16Z",
"thumbnail_url": "https://static-cdn.jtvnw.net/cf_vods/.../thumb0-320x180.jpg",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
},
"owner": {
"id": "124425501",
"login": "lck",
"display_name": "LCK",
"is_partner": true
}
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/videos?login=<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"