Fanatics Live API endpoint
Use Crawlora's Fanatics Live show API to extract supported public Fanatics Live data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/fanaticslive/show/{id}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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| id (path) | string | Yes | Fanatics Live show id, e.g. from a browse result's id field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/fanaticslive/show/example" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `status` values observed live: `ACTIVE`, `PREPARING`, `COMPLETE` (ended -- see [`GET /fanaticslive/shop/{slug}/shows?status=replay`](fanaticslive-shop-shows.md) for the credential-free way to reach an ended show's id, since ended shows drop out of `/fanaticslive/browse`'s league feeds essentially immediately). - `current_break` is the show's presently active break/lot, omitted when the show has none active (e.g. between breaks, or before the show starts). For a break's live digital-instant-rip progress (spot claim state, the currently revealing item), see [`GET /fanaticslive/show/{id}/instant-rips`](fanaticslive-instant-rips.md). - `breaks[].status` values observed live: `READY`, `RIPPING`, `COMPLETE`. - `breaks[].type` values observed live: `PERSONAL` (single buyer), `GROUP` (sold by the spot -- see `break_spots_counts` on `current_break`). - `breaks[].pricing_type` values observed live: `SET_PRICE`. Fanatics Live's own bidding UI and `currentBreakSpotAuction` field strongly imply an auction-priced value also exists but it was not observed live. - `minimum_bid` is omitted when a break has no minimum bid set. - Real-time state during a live show (active bids, pack-rip animation progress) is delivered over a separate GraphQL subscription Fanatics Live's own client uses for its live UI, not this REST snapshot -- this endpoint reflects a point-in-time read, matching this repo's usual scraper-endpoint shape. - An unrecognized `id` returns `404`. - A missing `id` returns `400` before any upstream request is made. Example response: ```json { "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" } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/fanaticslive.showResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | fanaticslive.ShowResponse | No | ||||
| data.breaks | array | No | ||||
| data.breaks[].id | string | No | ||||
| data.breaks[].minimum_bid | fanaticslive.Money | No | ||||
| data.breaks[].minimum_bid.amount | number | No | ||||
| data.breaks[].minimum_bid.amount_display | string | No | ||||
| data.breaks[].minimum_bid.currency | string | No | ||||
| data.breaks[].pricing_type | string | No | SET_PRICE | SET_PRICE | ||
| data.breaks[].status | string | No | READY, RIPPING, COMPLETE | READY | ||
| data.breaks[].title | string | No | ||||
| data.breaks[].type | string | No | PERSONAL, GROUP | PERSONAL | ||
| data.channel | fanaticslive.ShowChannel | No | ||||
| data.channel.id | string | No | ||||
| data.channel.name | string | No | ||||
| data.channel.shop | fanaticslive.ShowChannelShop | No | ||||
| data.channel.shop.description | string | No | ||||
| data.channel.shop.follower_count | integer | No | ||||
| data.channel.shop.id | string | No | ||||
| data.channel.shop.logo_url | string | No | ||||
| data.channel.shop.name | string | No | ||||
| data.channel.shop.slug | string | No | ||||
| data.country | string | No | ||||
| data.cover_image_url | string | No | ||||
| data.current_break | fanaticslive.CurrentBreak | No | ||||
| data.current_break.break_spots_counts | fanaticslive.BreakSpotsCounts | No | ||||
| data.current_break.break_spots_counts.available | integer | No | ||||
| data.current_break.break_spots_counts.claimed | integer | No | ||||
| data.current_break.break_spots_counts.total | integer | No | ||||
| data.current_break.id | string | No | ||||
| data.current_break.minimum_bid | fanaticslive.Money | No | ||||
| data.current_break.minimum_bid.amount | number | No | ||||
| data.current_break.minimum_bid.amount_display | string | No | ||||
| data.current_break.minimum_bid.currency | string | No | ||||
| data.current_break.pricing_type | string | No | SET_PRICE | SET_PRICE | PricingType: SET_PRICE was observed live; Fanatics Live's own bid/ bidV2 mutations and currentBreakSpotAuction field strongly imply an auction-priced value also exists but it was not observed live. | |
| data.current_break.status | string | No | READY, RIPPING, COMPLETE | READY | Status: READY, RIPPING, and COMPLETE were observed live; other transitional states almost certainly also exist but were not observed. | |
| data.current_break.title | string | No | ||||
| data.current_break.type | string | No | PERSONAL, GROUP | PERSONAL | Type: PERSONAL (single buyer) and GROUP (sold by the spot) were observed live. | |
| data.description | string | No | ||||
| data.id | string | No | ||||
| data.leagues | array | No | ||||
| data.name | string | No | ||||
| data.starts_at | string | No | ||||
| data.status | string | No | ACTIVE, PREPARING, COMPLETE | ACTIVE | Status: see LiveShow.Status for the full confirmed enum. | |
| data.viewers | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/fanaticslive/show/example" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms