Endpoint Playground
Test Crawlora's Fanatics Collect Listing 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/listing/<id>?type=WEEKLY" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Listing UUID | |
| type | string | No | WEEKLY | Listing type. Default: WEEKLY |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1e389d12-6f23-11ed-9d8b-0a58a9feac02",
"integer_id": 3093496,
"title": "1963 Fleer Football Keith Lincoln #70 PSA 6 EXMT",
"url": "https://www.fanaticscollect.com/weekly/1e389d12-6f23-11ed-9d8b-0a58a9feac02",
"listing_type": "WEEKLY",
"lot_string": "WA1 Lot: 1417",
"certified_seller": "Fanatics Collect",
"status": "STATUS_SOLD",
"is_closed": true,
"description": "Welcome to our first Weekly Sunday Auction!",
"current_bid": {
"amount": 11,
"currency": "USD"
},
"starting_price": {
"amount": 5,
"currency": "USD"
},
"bid_count": 2,
"favorited_count": 0,
"auction": {
"id": "8d27de96-6f1d-11ed-ab20-0a58a9feac02",
"type": "CollectWeeklyAuction",
"integer_id": 172,
"auction_integer_id": 30,
"name": "2022 Weekly Auction #1",
"short_name": "WA1",
"payout_date": "2022-02-16",
"starts_at": "2022-01-14T03:00:00Z",
"ends_at": "2022-01-24T03:00:00Z",
"status": "CLOSED"
},
"images": [
{
"large": "https://img/large.jpg",
"medium": "https://img/medium.jpg",
"small": "https://img/small.jpg",
"thumbnail": "https://img/thumb.jpg"
}
],
"sale_history": [
{
"sold_date": "2022-01-24T04:10:05Z",
"sold_for": {
"amount": 13.2,
"currency": "USD"
}
}
],
"vault_item": {
"id": "20e2198e-6f1f-11ed-a798-0a58a9feac02",
"integer_id": 1049411,
"safe_market_value": {
"amount": 28,
"currency": "USD"
},
"suggested_asking_price": {
"amount": 28,
"currency": "USD"
},
"grading_service_url": "https://www.psacard.com/cert/43185259/psa",
"origin_type": "VAULT_SUBMISSION",
"origin_label": "Vault Submission"
},
"inserted_at": "2021-12-22T03:43:54Z",
"updated_at": "2023-01-09T18:38:27Z"
}
}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 full detail for a single Fanatics Collect listing: a weekly-auction lot, a premier-auction lot, or a fixed-price "buy now" item (including an Instant Rips pack). Fields include title, current bid/starting/asking price, bid count, auction window and status, images, description, completed sale history, and -- when the card is stored in Fanatics' vault -- grading/authentication metadata including a direct PSA cert-verification link. Credential-free public data from Fanatics Collect's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "1e389d12-6f23-11ed-9d8b-0a58a9feac02",
"integer_id": 3093496,
"title": "1963 Fleer Football Keith Lincoln #70 PSA 6 EXMT",
"url": "https://www.fanaticscollect.com/weekly/1e389d12-6f23-11ed-9d8b-0a58a9feac02",
"listing_type": "WEEKLY",
"lot_string": "WA1 Lot: 1417",
"certified_seller": "Fanatics Collect",
"status": "STATUS_SOLD",
"is_closed": true,
"description": "Welcome to our first Weekly Sunday Auction!",
"current_bid": {
"amount": 11,
"currency": "USD"
},
"starting_price": {
"amount": 5,
"currency": "USD"
},
"bid_count": 2,
"favorited_count": 0,
"auction": {
"id": "8d27de96-6f1d-11ed-ab20-0a58a9feac02",
"type": "CollectWeeklyAuction",
"integer_id": 172,
"auction_integer_id": 30,
"name": "2022 Weekly Auction #1",
"short_name": "WA1",
"payout_date": "2022-02-16",
"starts_at": "2022-01-14T03:00:00Z",
"ends_at": "2022-01-24T03:00:00Z",
"status": "CLOSED"
},
"images": [
{
"large": "https://img/large.jpg",
"medium": "https://img/medium.jpg",
"small": "https://img/small.jpg",
"thumbnail": "https://img/thumb.jpg"
}
],
"sale_history": [
{
"sold_date": "2022-01-24T04:10:05Z",
"sold_for": {
"amount": 13.2,
"currency": "USD"
}
}
],
"vault_item": {
"id": "20e2198e-6f1f-11ed-a798-0a58a9feac02",
"integer_id": 1049411,
"safe_market_value": {
"amount": 28,
"currency": "USD"
},
"suggested_asking_price": {
"amount": 28,
"currency": "USD"
},
"grading_service_url": "https://www.psacard.com/cert/43185259/psa",
"origin_type": "VAULT_SUBMISSION",
"origin_label": "Vault Submission"
},
"inserted_at": "2021-12-22T03:43:54Z",
"updated_at": "2023-01-09T18:38:27Z"
}
}curl "https://api.crawlora.net/api/v1/fanaticscollect/listing/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"