Endpoint Playground
Test Crawlora's Fanatics search 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Free-text search keywords. | |
| 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/search?pageNumber=1&pageSize=24&query=colts+jersey&sortOption=TopSellers",
"fetched_at": "2026-09-16T04:00:00Z",
"query": "colts jersey",
"page_number": 1,
"page_size": 24,
"sort_option": "TopSellers",
"total_items": 318,
"has_next_page": true,
"items": [
{
"product_id": "5227968",
"name": "Jonathan Taylor Indianapolis Colts Nike 2026 Rivalries Collection Game Jersey - Anthracite",
"brand": "Nike",
"category": "Jerseys",
"url": "https://www.fanatics.com/nfl/indianapolis-colts/jonathan-taylor-indianapolis-colts-nike-...",
"image": "https://fanatics.frgimages.com/indianapolis-colts/...",
"currency_code": "USD",
"price": 149.99,
"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 Fanatics' own keyword search results (name, brand, price, availability, image, url).
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://www.fanatics.com/search?pageNumber=1&pageSize=24&query=colts+jersey&sortOption=TopSellers",
"fetched_at": "2026-09-16T04:00:00Z",
"query": "colts jersey",
"page_number": 1,
"page_size": 24,
"sort_option": "TopSellers",
"total_items": 318,
"has_next_page": true,
"items": [
{
"product_id": "5227968",
"name": "Jonathan Taylor Indianapolis Colts Nike 2026 Rivalries Collection Game Jersey - Anthracite",
"brand": "Nike",
"category": "Jerseys",
"url": "https://www.fanatics.com/nfl/indianapolis-colts/jonathan-taylor-indianapolis-colts-nike-...",
"image": "https://fanatics.frgimages.com/indianapolis-colts/...",
"currency_code": "USD",
"price": 149.99,
"availability": "InStock"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanatics/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"