130point.com API130point.com ↗
Search sold trading card listings across eBay, Goldin, Heritage Auctions, MySlabs, and more. Get prices, dates, and sale types via one API endpoint.
curl -X GET 'https://api.parse.bot/scraper/28d873f5-47d5-4c01-a275-e80c6b3fc610/search_sold_items?limit=5&query=Michael+Jordan&marketplace=all' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for sold card items by keyword. Returns card sale records from multiple marketplaces including price, date, sale type, and listing details. Invalid sort or marketplace values are rejected with a validation error.
| Param | Type | Description |
|---|---|---|
| sort | string | Sort order for results. Accepted values: EndTimeSoonest, StartTimeNewest, CurrentPriceHighest, BestMatch. |
| limit | integer | Maximum number of items to return (max 1000). |
| queryrequired | string | Search query for card name/description (e.g., 'Michael Jordan', 'Pokemon Charizard PSA 10'). |
| marketplace | string | Filter by marketplace. Accepted values: all, ebay, pwcc, goldin, myslabs, pristine, heritage. |
{
"type": "object",
"fields": {
"sort": "string - sort order applied",
"items": "array of card sale objects with id, price, currency, image_url, sold_via, title, url, sale_type, date",
"query": "string - the search query used",
"marketplace": "string - marketplace filter applied",
"total_found": "integer - total items found",
"items_returned": "integer - number of items in this response"
},
"sample": {
"data": {
"sort": "EndTimeSoonest",
"items": [
{
"id": "926174-MS",
"url": "https://myslabs.com/slab/view/926174-MS",
"date": "Wed 06 May 2026 17:11:32 EDT",
"price": 78.23,
"title": "1990 Hoops Michael Jordan Playground 382 Chicago Bulls PSA 10 Gem Mint",
"currency": "USD",
"sold_via": "MySlabs",
"image_url": "https://cdn.myslabs.com/myslabs-prod/media/OXUKBXL_1668086123_1.jpeg",
"sale_type": "Fixed Price"
}
],
"query": "Michael Jordan",
"marketplace": "all",
"total_found": 1000,
"items_returned": 5
},
"status": "success"
}
}About the 130point.com API
The 130point.com API gives developers access to historical sold trading card data across six marketplaces through a single search_sold_items endpoint. Each response includes up to 1,000 sale records with 9 fields per item: price, currency, sale date, sale type, marketplace source, title, image URL, listing URL, and a unique ID. Queries can target specific cards by name, grade, or set — for example, 'Pokemon Charizard PSA 10' or 'Michael Jordan rookie'.
What the API Returns
The search_sold_items endpoint searches completed card sales and returns a structured result set including total_found, items_returned, the query used, and the marketplace filter applied. Each object in the items array carries a price and currency, a date for when the sale closed, a sale_type (auction, buy-it-now, etc.), the sold_via marketplace name, a title, and direct url and image_url links to the original listing.
Filtering and Sorting
The marketplace parameter narrows results to a single source: ebay, goldin, myslabs, pristine, heritage, or pwcc — or pass all to aggregate across all of them. The sort parameter controls result ordering with four accepted values: BestMatch, CurrentPriceHighest, StartTimeNewest, and EndTimeSoonest. Passing an unrecognized value for either parameter returns a validation error rather than silently falling back to a default, so input values should match the accepted list exactly.
Coverage and Limits
The limit parameter accepts up to 1,000 items per call, giving a useful snapshot for price research or comp analysis without requiring pagination. Coverage spans eBay, Goldin, Heritage Auctions, Pristine Auction, MySlabs, and Fanatics Collect. The query field supports free-text search, so you can include player names, card sets, certification grades (PSA, BGS, SGC), and years in the same string to narrow results effectively.
- Look up recent sale prices for a specific graded card (e.g., 'BGS 9.5 Luka Doncic Prizm') across all supported marketplaces at once.
- Compare auction vs. buy-it-now sale prices for the same card using the
sale_typefield. - Track price trends over time by sorting results by
StartTimeNewestand recording thepriceanddatefields. - Build a card portfolio valuation tool that maps each card in a collection to its most recent sold comps.
- Identify which marketplace (
sold_via) tends to achieve the highest prices for a given card category usingCurrentPriceHighestsort. - Filter results to a single marketplace like Goldin or Heritage to benchmark high-end auction results separately from eBay volume.
- Power a card flipping or arbitrage tool by querying recent sold data and comparing against current listing prices.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does 130point.com offer an official developer API?+
What does the `sale_type` field distinguish?+
sale_type field indicates how the item was sold — for example, as an auction or a fixed-price transaction. This lets you filter or segment results by sale mechanism when analyzing comps, since auction hammer prices and buy-it-now prices for the same card can differ significantly.Does the API return active listings or only completed sales?+
search_sold_items endpoint returns only completed, sold transactions — not active or unsold listings. Every item in the response has a price and date reflecting a closed sale. The API does not currently cover active listing data. You can fork it on Parse and revise it to add an endpoint targeting live listings if that coverage is needed.Is there pagination support for results beyond the first page?+
limit parameter (up to 1,000 items) and returns total_found alongside items_returned, but there is no offset or cursor parameter for paginating through results beyond that limit. If total_found exceeds your limit, you currently receive only the top results under the chosen sort order. You can fork this API on Parse and revise it to add offset-based pagination to retrieve deeper result sets.Which marketplaces are covered, and is PWCC included?+
marketplace values are ebay, goldin, myslabs, pristine, heritage, pwcc, and all. The pwcc value is listed as an accepted filter, though availability of results depends on what sales data is indexed for that source. Coverage does not currently extend to other platforms such as Collect Auctions or Lelands. You can fork this API on Parse and revise it to add support for additional marketplaces.