Endpoint Playground
Test Crawlora's Fanatics Live 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/fanaticslive/channel/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Fanatics Live channel id (a UUID), e.g. from a shop or show result's channel.id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "adc4b55f-5e10-4ed0-8680-11875cfe1c94",
"name": "Going Twice Pokemon",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
},
"live_shows": [
{
"id": "2c05ee77-3e37-46df-b998-bd509f80c8fd",
"name": "Bingo Hall Wednesday w/ Fenrey & Mikey",
"status": "PREPARING",
"starts_at": "2026-09-23T14:30:00.000000Z",
"channel": {
"id": "adc4b55f-5e10-4ed0-8680-11875cfe1c94",
"name": "Going Twice Pokemon",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
}
}
}
],
"replay_shows": []
}
}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 Fanatics Live channel's own detail page: its parent shop, and a first page of its live/upcoming and past/replay shows. A shop can run several channels (e.g. a league-specific sub-feed) -- see /fanaticslive/shop/{slug} for a shop's full channel list and /fanaticslive/shop/{slug}/shows for cursor-paginated access to a full show history. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "adc4b55f-5e10-4ed0-8680-11875cfe1c94",
"name": "Going Twice Pokemon",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
},
"live_shows": [
{
"id": "2c05ee77-3e37-46df-b998-bd509f80c8fd",
"name": "Bingo Hall Wednesday w/ Fenrey & Mikey",
"status": "PREPARING",
"starts_at": "2026-09-23T14:30:00.000000Z",
"channel": {
"id": "adc4b55f-5e10-4ed0-8680-11875cfe1c94",
"name": "Going Twice Pokemon",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
}
}
}
],
"replay_shows": []
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/channel/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"