Endpoint Playground
Test Crawlora's Fanatics categories 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/fanatics/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.fanatics.com/content/nav/v1789467884/510005/en-US.json",
"fetched_at": "2026-09-16T04:00:00Z",
"leagues": [
{
"name": "NFL",
"url": "/nfl/o-3572+z-953036859-1253393850",
"teams": [
{
"name": "Indianapolis Colts",
"url": "/nfl/indianapolis-colts/o-2483+t-03378189+z-90650-4056854214",
"product_count": 6138
}
]
},
{
"name": "College",
"url": "/college/o-27+z-9314487535-1329600116",
"teams": [
{
"name": "Alabama Crimson Tide",
"url": "/college/alabama-crimson-tide/o-38+t-12809913+z-977646-2884991572"
}
]
}
]
}
}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' full top-level navigation tree: leagues (NFL, MLB, NBA, NHL, Soccer, WWE, College, ...) and, where Fanatics exposes a team-level breakdown, each league's teams (College's several hundred schools included). Each league's or team's url is directly usable as fanatics_category's url input. Public data sourced from fanatics.com's own navigation data.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.fanatics.com/content/nav/v1789467884/510005/en-US.json",
"fetched_at": "2026-09-16T04:00:00Z",
"leagues": [
{
"name": "NFL",
"url": "/nfl/o-3572+z-953036859-1253393850",
"teams": [
{
"name": "Indianapolis Colts",
"url": "/nfl/indianapolis-colts/o-2483+t-03378189+z-90650-4056854214",
"product_count": 6138
}
]
},
{
"name": "College",
"url": "/college/o-27+z-9314487535-1329600116",
"teams": [
{
"name": "Alabama Crimson Tide",
"url": "/college/alabama-crimson-tide/o-38+t-12809913+z-977646-2884991572"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/fanatics/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"