Endpoint Playground
Test Crawlora's Twitch clips 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/clips?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) | |
| limit | integer | No | Number of clips to return (default 20, max 100) |
{
"code": 200,
"msg": "OK",
"data": {
"login": "caedrel",
"count": 20,
"clips": [
{
"id": "3804362741",
"url": "https://www.twitch.tv/caedrel/clip/LitigiousChillyBaboonCclamChamp-hhXP4-A8YhevOQRo",
"title": "ROAMER LOCKE PENTA KILL ends the game",
"view_count": 5370,
"duration_seconds": 42,
"created_at": "2026-08-07T10:59:22Z",
"thumbnail_url": "https://static-cdn.jtvnw.net/twitch-video-assets/.../thumb-0000000000-1920x1080.jpg",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
},
"curator": {
"id": "29221067",
"login": "daniel0527",
"display_name": "凡人"
}
}
]
}
}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 clips (last 7 days), most-viewed first: title, view count, duration, curator, and the game it was recorded under. Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"login": "caedrel",
"count": 20,
"clips": [
{
"id": "3804362741",
"url": "https://www.twitch.tv/caedrel/clip/LitigiousChillyBaboonCclamChamp-hhXP4-A8YhevOQRo",
"title": "ROAMER LOCKE PENTA KILL ends the game",
"view_count": 5370,
"duration_seconds": 42,
"created_at": "2026-08-07T10:59:22Z",
"thumbnail_url": "https://static-cdn.jtvnw.net/twitch-video-assets/.../thumb-0000000000-1920x1080.jpg",
"game": {
"id": "21779",
"slug": "league-of-legends",
"name": "League of Legends"
},
"curator": {
"id": "29221067",
"login": "daniel0527",
"display_name": "凡人"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/clips?login=<login>" \
-H "x-api-key: $CRAWLORA_API_KEY"