Endpoint Playground
Test Crawlora's Twitch team 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/team?team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| team | string | Yes | Twitch team slug (the lowercase URL slug from twitch.tv/team/{slug}) |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1366421358",
"name": "yumetalent",
"display_name": "Yume Talent",
"logo_url": "https://static-cdn.jtvnw.net/team-assets/yumetalent-726f49791ba64632b59c99061780353f.jpeg",
"banner_url": "https://static-cdn.jtvnw.net/team-assets/yumetalent-c01a9fe59fed40579144aaf79ba5edd1.jpeg",
"owner_login": "yumetalent",
"member_count": 5,
"members": [
{
"id": "92038375",
"login": "caedrel",
"display_name": "Caedrel",
"profile_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/483a37ac-58fd-4e2f-8dc3-2c68a0164112-profile_image-50x50.png",
"is_live": true,
"viewers_count": 38800
},
{
"id": "35739604",
"login": "rekkles",
"display_name": "Rekkles",
"is_live": true,
"viewers_count": 1186
}
]
}
}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 team's full member roster, with live status and viewer count for whoever is currently live, plus team-level metadata (banner, logo, description, owner). Public data sourced from Twitch's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1366421358",
"name": "yumetalent",
"display_name": "Yume Talent",
"logo_url": "https://static-cdn.jtvnw.net/team-assets/yumetalent-726f49791ba64632b59c99061780353f.jpeg",
"banner_url": "https://static-cdn.jtvnw.net/team-assets/yumetalent-c01a9fe59fed40579144aaf79ba5edd1.jpeg",
"owner_login": "yumetalent",
"member_count": 5,
"members": [
{
"id": "92038375",
"login": "caedrel",
"display_name": "Caedrel",
"profile_image_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/483a37ac-58fd-4e2f-8dc3-2c68a0164112-profile_image-50x50.png",
"is_live": true,
"viewers_count": 38800
},
{
"id": "35739604",
"login": "rekkles",
"display_name": "Rekkles",
"is_live": true,
"viewers_count": 1186
}
]
}
}curl "https://api.crawlora.net/api/v1/twitch/team?team=<team>" \
-H "x-api-key: $CRAWLORA_API_KEY"