Endpoint Playground
Test Crawlora's Fanatics category 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/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | A fanatics.com league or team category URL, exactly as returned by a fanatics_categories result's url field. | |
| page_number | integer | No | 1-based result page. Defaults to 1. | |
| page_size | integer | No | Results per page. One of 24, 48, 72. Defaults to 24. | |
| sort | string | No | One of TopSellers, LowestPrice, HighestPrice, NewestArrivals. Defaults to TopSellers. |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.fanatics.com/nfl/indianapolis-colts/o-2483+t-03378189+z-90650-4056854214?pageNumber=1&pageSize=24&sortOption=TopSellers",
"fetched_at": "2026-09-16T04:00:00Z",
"page_number": 1,
"page_size": 24,
"sort_option": "TopSellers",
"total_items": 6138,
"has_next_page": true,
"items": [
{
"product_id": "204125114",
"name": "Indianapolis Colts lululemon Women's Define Jacket *Luon™ - White",
"brand": "lululemon",
"category": "Jackets",
"url": "https://www.fanatics.com/nfl/indianapolis-colts/indianapolis-colts-lululemon-womens-define-jacket-*luon™-white/o-4694+t-03486978+p-137748515571+z-8-1755165119",
"image": "https://fanatics.frgimages.com/indianapolis-colts/womens-lululemon-white-indianapolis-colts-define-jacket-*luon™_ss5_p-204125114+u-tfm6iu9f4sci5ay7l1po+v-oahagmhqfyxrebvsor6i.jpg?_hv=2&w=600",
"currency_code": "USD",
"price": 138,
"availability": "InStock"
}
]
}
}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 one page of a Fanatics league or team category's product listing (name, brand, price, availability, image, url). Use GET /fanatics/categories to discover valid category urls.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.fanatics.com/nfl/indianapolis-colts/o-2483+t-03378189+z-90650-4056854214?pageNumber=1&pageSize=24&sortOption=TopSellers",
"fetched_at": "2026-09-16T04:00:00Z",
"page_number": 1,
"page_size": 24,
"sort_option": "TopSellers",
"total_items": 6138,
"has_next_page": true,
"items": [
{
"product_id": "204125114",
"name": "Indianapolis Colts lululemon Women's Define Jacket *Luon™ - White",
"brand": "lululemon",
"category": "Jackets",
"url": "https://www.fanatics.com/nfl/indianapolis-colts/indianapolis-colts-lululemon-womens-define-jacket-*luon™-white/o-4694+t-03486978+p-137748515571+z-8-1755165119",
"image": "https://fanatics.frgimages.com/indianapolis-colts/womens-lululemon-white-indianapolis-colts-define-jacket-*luon™_ss5_p-204125114+u-tfm6iu9f4sci5ay7l1po+v-oahagmhqfyxrebvsor6i.jpg?_hv=2&w=600",
"currency_code": "USD",
"price": 138,
"availability": "InStock"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanatics/category?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"