Endpoint Playground
Test Crawlora's Fanatics Collect Auctions 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/fanaticscollect/auctions" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"auctions": [
{
"id": "61de75bc-0e4b-11f1-80c8-0a58a9feac02",
"urn": "WEEKLY:61de75bc-0e4b-11f1-80c8-0a58a9feac02",
"marketplace": "WEEKLY",
"type": "CollectWeeklyAuction",
"integer_id": 421,
"auction_integer_id": 277,
"name": "Weekly Auction #241",
"short_name": "WA241",
"starts_at": "2026-08-21T02:00:00Z",
"ends_at": "2026-08-31T02:00:00Z",
"status": "CLOSED",
"timer": {
"auction_starts_at": "2026-08-21T02:00:00Z",
"auction_ends_at": "2026-08-31T02:00:00Z",
"window_ends_at": "2026-09-16T05:16:00Z",
"window_ordinal": 23183,
"window_duration_seconds": 60
}
},
{
"id": "cf65e70a-3a6a-11f1-bbf0-0a58a9feac02",
"urn": "PREMIER:cf65e70a-3a6a-11f1-bbf0-0a58a9feac02",
"marketplace": "PREMIER",
"type": "CollectPremierAuction",
"integer_id": 86,
"name": "September Premier Auction",
"short_name": "September",
"payout_date": "2026-10-07",
"starts_at": "2026-09-10T23:00:00Z",
"ends_at": "2026-09-25T01:00:00Z",
"status": "LIVE"
}
]
}
}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 Collect's current and recent weekly and premier auction events -- the same short list the site's own header auction switcher and countdown banner show. This is the discovery endpoint for Search's auction_urn param: copy an event's urn value to browse every lot in that auction. A small, current/recent set (observed live: around 6 events), not a full historical archive -- older auctions' urn values found on a Search result or a GetListing response remain valid for Search even once they no longer appear here. Credential-free public data from Fanatics Collect's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"auctions": [
{
"id": "61de75bc-0e4b-11f1-80c8-0a58a9feac02",
"urn": "WEEKLY:61de75bc-0e4b-11f1-80c8-0a58a9feac02",
"marketplace": "WEEKLY",
"type": "CollectWeeklyAuction",
"integer_id": 421,
"auction_integer_id": 277,
"name": "Weekly Auction #241",
"short_name": "WA241",
"starts_at": "2026-08-21T02:00:00Z",
"ends_at": "2026-08-31T02:00:00Z",
"status": "CLOSED",
"timer": {
"auction_starts_at": "2026-08-21T02:00:00Z",
"auction_ends_at": "2026-08-31T02:00:00Z",
"window_ends_at": "2026-09-16T05:16:00Z",
"window_ordinal": 23183,
"window_duration_seconds": 60
}
},
{
"id": "cf65e70a-3a6a-11f1-bbf0-0a58a9feac02",
"urn": "PREMIER:cf65e70a-3a6a-11f1-bbf0-0a58a9feac02",
"marketplace": "PREMIER",
"type": "CollectPremierAuction",
"integer_id": 86,
"name": "September Premier Auction",
"short_name": "September",
"payout_date": "2026-10-07",
"starts_at": "2026-09-10T23:00:00Z",
"ends_at": "2026-09-25T01:00:00Z",
"status": "LIVE"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticscollect/auctions" \
-H "x-api-key: $CRAWLORA_API_KEY"