Fanatics Collect API endpoint
Use Crawlora's Fanatics Collect Search API to extract supported public Fanatics Collect data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/fanaticscollect/searchSearches Fanatics Collect's full marketplace -- weekly auctions, premier auctions, and the fixed-price "Buy Now" marketplace -- by free-text query, category, grading service, price/year/grade range, and listing status, in a caller-selected sort order. Credential-free public data from Fanatics Collect's own public search index. See GetCategories for the accepted category, grading-service, status, and sort values. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| q | string | No | Free-text search across title, brand, subject, and set | ||
| marketplace | string | No | Listing type. Omit to search all three. Allowed values: WEEKLY, PREMIER, FIXED | ||
| category_parent | string | No | Top-level category Allowed values: Sports Cards, Trading Card Games, Other, Video Games, Comics | ||
| sub_category | string | No | A parent > child category path (or just the child name), e.g. \ | ||
| grading_service | string | No | Grading/authentication service Allowed values: Ungraded, CGC, PSA, BGS, SGC, Other Approved, PSA/DNA, CSG, MBA, PSA_DNA, BVG, OTHER_APPROVED, BCCG, WATA, GAI, VGA, CBCS, UDA, CAC, KSA, PCGS | ||
| certified_seller | string | No | Exact seller/shop name (case-insensitive). Not a fixed enum -- match a name from a prior Search result's certified_seller field. | ||
| seller_id | string | No | Exact seller id (UUID) -- browse everything one seller has listed. Not a fixed enum; match a prior Search result's seller_id field. | ||
| brand | string | No | Exact brand/subject facet value (case-insensitive), e.g. a player, character, or set name. Not a fixed enum; match a prior Search result's brand field. | ||
| auction_urn | string | No | Browse every lot in one specific weekly or premier auction event. Not a fixed enum; copy the exact value from a prior Search result's auction_urn field. Only WEEKLY/PREMIER listings carry one. | ||
| status | string | No | Listing status. Default LIVE. Allowed values: LIVE, SOLD, ALL | ||
| allow_offers | boolean | No | Filter for listings the seller accepts offers on | ||
| has_offers | boolean | No | Filter for listings with at least one active offer pending | ||
| great_price | boolean | No | Filter for listings Fanatics Collect itself flags as a great price vs. guide value | ||
| min_price | number | No | Minimum current price/bid, inclusive | ||
| max_price | number | No | Maximum current price/bid, inclusive | ||
| min_year | integer | No | Minimum card/item year, inclusive | ||
| max_year | integer | No | Maximum card/item year, inclusive | ||
| min_grade | number | No | Minimum numeric grade, inclusive | ||
| max_grade | number | No | Maximum numeric grade, inclusive | ||
| sort | string | No | Result order. Default best_value. Allowed values: recommended, recently_added, best_deals, lot_number, lowest_price, highest_price, best_value, earliest_year, latest_year, earliest_sale_date, latest_sale_date | ||
| page | integer | No | 1-based page number, default 1 | ||
| per_page | integer | No | Results per page, default 24, max 100 | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/fanaticscollect/search?q=coffee&marketplace=WEEKLY&category_parent=Sports+Cards&grading_service=Ungraded&status=LIVE&allow_offers=true&has_offers=true&great_price=true&sort=recommended&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"query": "judge",
"page": 1,
"per_page": 24,
"total": 1119,
"total_pages": 47,
"results": [
{
"id": "7333af05-4208-4acd-a7fa-99410276afa5",
"url": "https://www.fanaticscollect.com/buy-now/7333af05-4208-4acd-a7fa-99410276afa5",
"title": "2024 Pokemon Japanese Sv5m-Cyber Judge Excadrill #079 PSA 10",
"marketplace": "FIXED",
"status": "Live",
"current_price": {
"amount": 40,
"currency": "USD"
},
"year": 2024,
"grade": 10,
"grading_service": "PSA",
"category_parent": "Trading Card Games",
"sub_categories": [
"Trading Card Games > Pokémon (Japanese)"
],
"favorited_count": 3,
"allow_offers": true,
"has_offers": false,
"great_price": false,
"fanatics_authentic": false
}
]
}
}Request schema
No body schema
Response schema
#/definitions/fanaticscollect.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | fanaticscollect.SearchResponse | No | ||||
| data.page | integer | No | ||||
| data.per_page | integer | No | ||||
| data.query | string | No | ||||
| data.results | array | No | ||||
| data.results[].allow_offers | boolean | No | ||||
| data.results[].asking_price | fanaticscollect.Money | No | ||||
| data.results[].asking_price.amount | number | No | 13.2 | |||
| data.results[].asking_price.currency | string | No | USD | |||
| data.results[].auction_name | string | No | ||||
| data.results[].auction_urn | string | No | ||||
| data.results[].brand | string | No | ||||
| data.results[].card_number | string | No | ||||
| data.results[].category_parent | string | No | ||||
| data.results[].certified_seller | string | No | ||||
| data.results[].current_price | fanaticscollect.Money | No | ||||
| data.results[].current_price.amount | number | No | 13.2 | |||
| data.results[].current_price.currency | string | No | USD | |||
| data.results[].fanatics_authentic | boolean | No | ||||
| data.results[].favorited_count | integer | No | ||||
| data.results[].grade | number | No | ||||
| data.results[].grading_service | string | No | ||||
| data.results[].great_price | boolean | No | ||||
| data.results[].has_offers | boolean | No | ||||
| data.results[].id | string | No | ||||
| data.results[].image_primary | string | No | ||||
| data.results[].image_secondary | string | No | ||||
| data.results[].lot_number | string | No | ||||
| data.results[].marketplace | string | No | ||||
| data.results[].seller_id | string | No | ||||
| data.results[].serial | string | No | ||||
| data.results[].status | string | No | ||||
| data.results[].sub_categories | array | No | ||||
| data.results[].subtitle | string | No | ||||
| data.results[].teams | array | No | ||||
| data.results[].title | string | No | ||||
| data.results[].url | string | No | ||||
| data.results[].year | integer | No | ||||
| data.total | integer | No | ||||
| data.total_pages | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/fanaticscollect/search?q=coffee&marketplace=WEEKLY&category_parent=Sports+Cards&grading_service=Ungraded&status=LIVE&allow_offers=true&has_offers=true&great_price=true&sort=recommended&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms