Endpoint Playground
Test Crawlora's Fanatics Live show 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/show/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Fanatics Live show id, e.g. from a browse result's id field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1b1aeec0-346b-4c8f-941a-bcb8af558a5a",
"name": "$300 151 GODPACK BOUNTY!!",
"status": "ACTIVE",
"starts_at": "2026-09-15T14:24:03.157788Z",
"cover_image_url": "https://d10w40ipypj16l.cloudfront.net/breaking/live_streams/...jpg?auto=compress",
"viewers": 42,
"country": "US",
"leagues": [
"Pokemon",
"MTG",
"Other"
],
"channel": {
"id": "29a128bc-98ce-435f-9a5b-f122c779626e",
"name": "WeTheHobby Pokemon",
"shop": {
"id": "8ee6cf3e-96c9-420b-9129-9b4b36c3727f",
"slug": "we-the-hobby",
"name": "WeTheHobby",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/shops/8ee6cf3e-96c9-420b-9129-9b4b36c3727f/logo.png?auto=compress",
"description": "WeTheHobby global sports card entertainment company...",
"follower_count": 85378
}
},
"current_break": {
"id": "2b86dd9c-80e5-42fb-8534-be5007254f0f",
"title": "THE SUN(BREON) BREAK 6x Prismatic Booster Bundle PYE Break (36x Prismatic Booster Packs) #0915-3",
"status": "READY",
"type": "GROUP",
"pricing_type": "SET_PRICE",
"break_spots_counts": {
"available": 5,
"claimed": 3,
"total": 8
}
},
"breaks": [
{
"id": "743e3e3b-c372-4e85-b1bf-d58c60b1e154",
"title": "Magic The Gathering Lorwyn Eclipsed Play Booster Box",
"status": "READY",
"type": "PERSONAL",
"pricing_type": "SET_PRICE"
}
]
}
}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 live show's detail page: status, viewers, hosting channel/shop, its currently active break/lot, and its full break/lot list. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1b1aeec0-346b-4c8f-941a-bcb8af558a5a",
"name": "$300 151 GODPACK BOUNTY!!",
"status": "ACTIVE",
"starts_at": "2026-09-15T14:24:03.157788Z",
"cover_image_url": "https://d10w40ipypj16l.cloudfront.net/breaking/live_streams/...jpg?auto=compress",
"viewers": 42,
"country": "US",
"leagues": [
"Pokemon",
"MTG",
"Other"
],
"channel": {
"id": "29a128bc-98ce-435f-9a5b-f122c779626e",
"name": "WeTheHobby Pokemon",
"shop": {
"id": "8ee6cf3e-96c9-420b-9129-9b4b36c3727f",
"slug": "we-the-hobby",
"name": "WeTheHobby",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/shops/8ee6cf3e-96c9-420b-9129-9b4b36c3727f/logo.png?auto=compress",
"description": "WeTheHobby global sports card entertainment company...",
"follower_count": 85378
}
},
"current_break": {
"id": "2b86dd9c-80e5-42fb-8534-be5007254f0f",
"title": "THE SUN(BREON) BREAK 6x Prismatic Booster Bundle PYE Break (36x Prismatic Booster Packs) #0915-3",
"status": "READY",
"type": "GROUP",
"pricing_type": "SET_PRICE",
"break_spots_counts": {
"available": 5,
"claimed": 3,
"total": 8
}
},
"breaks": [
{
"id": "743e3e3b-c372-4e85-b1bf-d58c60b1e154",
"title": "Magic The Gathering Lorwyn Eclipsed Play Booster Box",
"status": "READY",
"type": "PERSONAL",
"pricing_type": "SET_PRICE"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/show/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"