Alt API endpoint
Use Crawlora's Alt sold listings API to extract supported public Alt 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.
/alt/sold-listingsSearches 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. 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 item name, subject, brand, and variety. Omit or pass * to browse the most recent sales. | ||
| category | string | No | Comma-separated card category filter Allowed values: BASEBALL_CARDS, POKEMON_CARDS, FOOTBALL_CARDS, BASKETBALL_CARDS, POP-CULTURE_CARDS, HOCKEY_CARDS, SOCCER_CARDS, ONE_PIECE_CARDS, OTHER_CARDS, TCG_CARDS, COMBAT_SPORTS_CARDS, RACING_CARDS, MAGIC_CARDS, YUGIOH_CARDS, GOLF_CARDS, TENNIS_CARDS | ||
| auction_house | string | No | Comma-separated source auction house filter. Pass Alt to see only Alt's own completed auctions. Allowed values: eBay, Fanatics Collect, Alt, Pristine Auction, Goldin, CardHobby, Memory Lane | ||
| grading_company | string | No | Comma-separated grading company filter Allowed values: PSA, CGC, BGS, CSG, SGC, PSA/DNA, BVG, BCCG, Factory Sealed, BAS, AUTHENTIC, TAG, RELABEL, RECASE, JSA/BVG, REVIEW, INTERNAL, NEW/, BULK, OTHERS, UNGRADED | ||
| 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/alt/sold-listings?q=coffee&category=BASEBALL_CARDS&auction_house=eBay&grading_company=PSA&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.
- There is no `sort` param — only Alt's own default relevance/recency ordering has been verified against this index. - `url` is the click-through link back to the original sold listing on its source site (e.g. an eBay item URL) when the source auction house provides one. - `auction_type` is a source-specific sub-classification (e.g. eBay's `BEST_OFFER`/`BUY_IT_NOW`/`AUCTION`), informational only — it is not a validated filter enum. Example response: ```json { "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"} ] } ] } } ```
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 |
| 429 | Too Many Requests | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
]
}
}Request schema
No body schema
Response schema
#/definitions/alt.soldListingsResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | alt.SoldListingsResponse | No | ||||
| data.page | integer | No | ||||
| data.per_page | integer | No | ||||
| data.query | string | No | ||||
| data.results | array | No | ||||
| data.results[].asset_id | string | No | ||||
| data.results[].auction_house | string | No | ||||
| data.results[].auction_type | string | No | ||||
| data.results[].brand | string | No | ||||
| data.results[].card_number | string | No | ||||
| data.results[].category | string | No | ||||
| data.results[].grade | string | No | ||||
| data.results[].grading_company | string | No | ||||
| data.results[].id | string | No | ||||
| data.results[].images | array | No | ||||
| data.results[].images[].position | string | No | ||||
| data.results[].images[].url | string | No | ||||
| data.results[].name | string | No | ||||
| data.results[].pop | integer | No | ||||
| data.results[].price | number | No | ||||
| data.results[].sold_date | string | No | ||||
| data.results[].subject | string | No | ||||
| data.results[].url | string | No | ||||
| data.results[].variety | string | No | ||||
| data.results[].year | integer | No | ||||
| data.total | 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/alt/sold-listings?q=coffee&category=BASEBALL_CARDS&auction_house=eBay&grading_company=PSA&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