Endpoint Playground
Test Crawlora's Fanatics Live leagues 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/leagues" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"leagues": [
{
"id": "6c7cacd0-e69a-4612-b762-fc25463cd2fb",
"name": "Pokemon",
"type": "POKEMON",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/leagues/Pokeball_144.png?auto=compress"
},
{
"id": "4699e517-ebb7-4f5b-82dd-2ea3636a9645",
"name": "NFL",
"type": "NFL",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/leagues/nfl.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 Fanatics Live's full league/category list (e.g. "Pokemon", "NFL", "MTG"). Each entry's type is usable directly with /fanaticslive/browse's league filter. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"leagues": [
{
"id": "6c7cacd0-e69a-4612-b762-fc25463cd2fb",
"name": "Pokemon",
"type": "POKEMON",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/leagues/Pokeball_144.png?auto=compress"
},
{
"id": "4699e517-ebb7-4f5b-82dd-2ea3636a9645",
"name": "NFL",
"type": "NFL",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/leagues/nfl.png?auto=compress"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/leagues" \
-H "x-api-key: $CRAWLORA_API_KEY"