Endpoint Playground
Test Crawlora's Fanatics Live browse 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/browse?league=NFL" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| league | string | Yes | NFL | Fanatics Live league type code. See GET /fanaticslive/leagues for the full list. |
{
"code": 200,
"msg": "OK",
"data": {
"league": "POKEMON",
"shows": [
{
"id": "1b1aeec0-346b-4c8f-941a-bcb8af558a5a",
"name": "$300 151 GODPACK BOUNTY!!",
"cover_image_url": "https://d10w40ipypj16l.cloudfront.net/breaking/live_streams/...jpg?auto=compress",
"status": "ACTIVE",
"starts_at": "2026-09-15T14:24:03.157788Z",
"viewers": 42,
"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"
}
}
}
]
}
}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 the live and upcoming shows currently listed under a Fanatics Live league: name, status, cover image, viewers, and the hosting channel/shop. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"league": "POKEMON",
"shows": [
{
"id": "1b1aeec0-346b-4c8f-941a-bcb8af558a5a",
"name": "$300 151 GODPACK BOUNTY!!",
"cover_image_url": "https://d10w40ipypj16l.cloudfront.net/breaking/live_streams/...jpg?auto=compress",
"status": "ACTIVE",
"starts_at": "2026-09-15T14:24:03.157788Z",
"viewers": 42,
"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"
}
}
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/browse?league=<league>" \
-H "x-api-key: $CRAWLORA_API_KEY"