Endpoint Playground
Test Crawlora's Fanatics Live shop shows 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/shop/<slug>/shows?status=live" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Fanatics Live shop slug, e.g. from a shops-list result's slug field | |
| status | string | Yes | live | Which show list to return |
| after | string | No | Pagination cursor from a previous response's next_cursor | |
| limit | integer | No | Max shows to return (default 24) |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "going-twice",
"status": "replay",
"shows": [
{
"id": "5ad91b91-89e9-47a3-8c87-ee41d4a3ea28",
"name": "16 Teams Left Bowman Chrome Delight, NFL Mixers w/ Instant Rips & Personals!",
"status": "COMPLETE",
"starts_at": "2026-09-15T15:40:06.847773Z",
"leagues": [
"WWE"
],
"channel": {
"id": "caf7ff45-e7d2-4c98-ba4b-805de7d734ba",
"name": "Going Twice Breaks",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
}
}
}
],
"next_cursor": "YXJyYXljb25uZWN0aW9uOjI=",
"has_more": 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 Fanatics Live shop's own live/upcoming or past/replay show list -- distinct from /fanaticslive/browse, which lists shows across all shops filtered by league. status=replay is the only credential-free way to observe a COMPLETE-status show. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "going-twice",
"status": "replay",
"shows": [
{
"id": "5ad91b91-89e9-47a3-8c87-ee41d4a3ea28",
"name": "16 Teams Left Bowman Chrome Delight, NFL Mixers w/ Instant Rips & Personals!",
"status": "COMPLETE",
"starts_at": "2026-09-15T15:40:06.847773Z",
"leagues": [
"WWE"
],
"channel": {
"id": "caf7ff45-e7d2-4c98-ba4b-805de7d734ba",
"name": "Going Twice Breaks",
"shop": {
"id": "81367b90-788a-4cf9-b2fd-e6c73f0a9174",
"slug": "going-twice",
"name": "Going Twice"
}
}
}
],
"next_cursor": "YXJyYXljb25uZWN0aW9uOjI=",
"has_more": true
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/shop/<slug>/shows?status=<status>" \
-H "x-api-key: $CRAWLORA_API_KEY"