Endpoint Playground
Test Crawlora's Alt sold listings 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/alt/sold-listings?category=BASEBALL_CARDS&auction_house=eBay&grading_company=PSA" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text search across item name, subject, brand, and variety. Omit or pass * to browse the most recent sales. | |
| category | string | No | BASEBALL_CARDS | Comma-separated card category filter |
| auction_house | string | No | eBay | Comma-separated source auction house filter. Pass Alt to see only Alt's own completed auctions. |
| grading_company | string | No | PSA | Comma-separated grading company filter |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 24, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "michael jordan",
"page": 1,
"per_page": 24,
"total": 101163,
"results": [
{
"id": "ced1abdd-989f-4cc8-b27d-2838b397d968",
"asset_id": "c373aa9a-e7eb-11ea-af75-02d4568f26ba",
"name": "1998 SP Top Prospects Phi Beta Jordan Phi Beta Jordan Michael Jordan #J22",
"subject": "Michael Jordan",
"year": 1998,
"brand": "SP Top Prospects Phi Beta Jordan",
"card_number": "J22",
"category": "BASKETBALL_CARDS",
"auction_house": "eBay",
"auction_type": "BEST_OFFER",
"grading_company": "PSA",
"grade": "8",
"pop": 16,
"price": 36,
"sold_date": "2026-09-15",
"url": "https://www.ebay.com/itm/366655056141",
"images": [
{
"position": "FRONT",
"url": "https://alt-images.b-cdn.net/external/ebay/sports/366655056141.jpg"
}
]
}
]
}
}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.
Searches Alt's global archive of completed card sales, aggregated across every source auction house its search carries -- the "market data" side of Alt's card-investment-marketplace positioning. This is a separate index from alt-search/alt-auctions, scoped to a rolling recent time window, not a filtered view of live listings. Pass auction_house=Alt to see only Alt's own completed auctions. Credential-free public data from Alt's own search backend. See alt-categories for the accepted category/auction_house/grading_company values.
{
"code": 200,
"msg": "OK",
"data": {
"query": "michael jordan",
"page": 1,
"per_page": 24,
"total": 101163,
"results": [
{
"id": "ced1abdd-989f-4cc8-b27d-2838b397d968",
"asset_id": "c373aa9a-e7eb-11ea-af75-02d4568f26ba",
"name": "1998 SP Top Prospects Phi Beta Jordan Phi Beta Jordan Michael Jordan #J22",
"subject": "Michael Jordan",
"year": 1998,
"brand": "SP Top Prospects Phi Beta Jordan",
"card_number": "J22",
"category": "BASKETBALL_CARDS",
"auction_house": "eBay",
"auction_type": "BEST_OFFER",
"grading_company": "PSA",
"grade": "8",
"pop": 16,
"price": 36,
"sold_date": "2026-09-15",
"url": "https://www.ebay.com/itm/366655056141",
"images": [
{
"position": "FRONT",
"url": "https://alt-images.b-cdn.net/external/ebay/sports/366655056141.jpg"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/alt/sold-listings" \
-H "x-api-key: $CRAWLORA_API_KEY"