Discover/Goldin Auctions API
live

Goldin Auctions APIgoldinauctions.com

Search active and sold auction lots on Goldin Auctions. Access bid history, hammer prices, grading info, and lot details via 3 REST endpoints.

This API takes change requests — .
Endpoint health
verified 3h ago
search_sold
search_lots
get_lot
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the Goldin Auctions API?

The Goldin Auctions API provides 3 endpoints for accessing auction lot data from goldinauctions.com, covering active listings, completed sales, and full lot details. The search_lots endpoint lets you filter live auctions by sport, grade, grader, year, and keyword, returning current bid amounts and end dates. The search_sold endpoint surfaces historical hammer prices sorted by sale value, and get_lot returns per-lot bid history, all images, and full metadata.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-indexed). Each page returns up to 24 lots.
Filter by card/item year (season).
Filter by grading certification company (e.g. PSA, Beckett, CGC, SGC, Ungraded).
Search keyword to filter lots (e.g. player name, card set, year). When omitted, returns all active lots.
Filter by sport/sub-category (e.g. Basketball, Baseball, Football, Hockey, Soccer, Pokemon, Golf, Pop Culture/Entertainment).
api.parse.bot/scraper/55b768f5-0318-4c87-b33c-7270166fd56e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/55b768f5-0318-4c87-b33c-7270166fd56e/search_lots?query=Michael+Jordan' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Search active auction lots on Goldin Auctions. Returns paginated results with lot details including current bid, end date, and grading info. Results are ordered by lot number ascending. Each result includes a 'slug' field that can be passed to get_lot for full details.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-indexed). Each page returns up to 24 lots.
yearstringFilter by card/item year (season).
gradestringFilter by grading certification company (e.g. PSA, Beckett, CGC, SGC, Ungraded).
querystringSearch keyword to filter lots (e.g. player name, card set, year). When omitted, returns all active lots.
sportstringFilter by sport/sub-category (e.g. Basketball, Baseball, Football, Hockey, Soccer, Pokemon, Golf, Pop Culture/Entertainment).
Response
{
  "type": "object",
  "fields": {
    "lots": "array of lot objects with lot_id, slug, title, year, grade, grader, image_url, current_bid, end_date, status",
    "page": "current page number",
    "total": "total number of matching lots",
    "per_page": "results per page (24)"
  },
  "sample": {
    "data": {
      "lots": [
        {
          "set": null,
          "slug": "1986-87-fleer-57-michael-jordan-rookie-card-psa-ex-mt-67jhic",
          "year": "1986",
          "grade": "EX-MT 6",
          "title": "1986-87 Fleer #57 Michael Jordan Rookie Card - PSA EX-MT 6",
          "grader": "PSA",
          "lot_id": "202608-0719-1958-45fbb14e-f9bc-4fa6-b50e-3cc96f050c6c",
          "player": null,
          "status": "Live",
          "end_date": "2026-08-21T02:00:00Z",
          "estimate": null,
          "image_url": "https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202608-0719-1958-45fbb14e-f9bc-4fa6-b50e-3cc96f050c6c/9e43251d-7fe9-470c-99af-ab7c5cfa014a@1x",
          "current_bid": 5550,
          "description": null
        }
      ],
      "page": 1,
      "total": 156,
      "per_page": 24
    },
    "status": "success"
  }
}

About the Goldin Auctions API

Active Lots and Sold Results

The search_lots endpoint returns paginated lists of live auction lots — up to 24 per page — with fields including lot_id, slug, title, current_bid, end_date, status, grade, grader, and image_url. You can filter by sport (e.g. Basketball, Pokemon, Pop Culture), grade (e.g. PSA, CGC, SGC, Ungraded), year, or a freeform query keyword. Results are ordered by lot number ascending. The search_sold endpoint mirrors this interface for completed auctions, returning hammer_price and sale_date in place of current_bid and end_date, sorted by highest final price.

Full Lot Detail and Bid History

The get_lot endpoint accepts a lot_id parameter, which corresponds to the slug field returned by either search_lots or search_sold. The response includes the full images array (all lot photos), lot_number, status (Live, Completed_Sold, or Preview), an ISO 8601 end_date, and a bid_history containing the sequence of bids placed on the lot. This makes it possible to reconstruct bidding activity and price progression for any individual item.

Filtering and Pagination

All three endpoints are paginated with a fixed page size of 24. The page parameter is 1-indexed. Filter parameters on search_lots and search_sold are all optional and combinable — you can narrow results to, for example, PSA-graded 1986 Basketball cards matching a specific player name. The total field in each response tells you how many matching records exist across all pages, which is useful for building paginated interfaces or estimating dataset size before iterating.

Reliability & maintenanceVerified

The Goldin Auctions API is a managed, monitored endpoint for goldinauctions.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when goldinauctions.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official goldinauctions.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track live bid prices on specific sports cards by polling search_lots with a player name query
  • Build a price guide for graded cards by aggregating hammer_price data from search_sold
  • Monitor auction close times using the end_date field to alert on soon-expiring lots
  • Compare final sale prices across grading tiers (PSA, CGC, SGC) for the same card using grade and grader filters
  • Pull full bid histories for individual lots via get_lot to analyze bidding patterns
  • Build a collectibles portfolio tracker that maps owned cards to recent Goldin Auctions sale comps
  • Research Pokemon and pop culture lot activity by filtering search_sold with the sport parameter
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Goldin Auctions have an official developer API?+
Goldin Auctions does not publish a public developer API or documented data feed for third-party use. This Parse API provides structured access to lot and auction result data from goldinauctions.com.
What does `get_lot` return that `search_lots` does not?+
The get_lot endpoint returns the full images array (all photos, not just the primary), the complete bid_history for the lot, and the lot_number within its auction. The search_lots endpoint returns only the primary image_url and the current top-line bid — enough for listing views but not for deep lot analysis.
How does pagination work across the three endpoints?+
All three endpoints return up to 24 results per page. The page parameter is 1-indexed, and each response includes a total field showing the full count of matching lots. Divide total by 24 and round up to determine the last page. There is no cursor-based pagination; page numbers are the only navigation mechanism.
Does the API cover auction house data beyond Goldin Auctions — such as PWCC, Heritage, or SCP?+
No. The API covers only Goldin Auctions (goldinauctions.com) active lots and sold results. You can fork this API on Parse and revise it to add endpoints targeting other auction platforms.
Is seller information or buyer's premium data available in the responses?+
Not currently. The API exposes lot-level fields — title, grade, grader, images, bid history, and hammer price — but does not include seller identities, buyer's premium percentages, or total purchase cost breakdowns. You can fork this API on Parse and revise it to add those fields if they become accessible.
Page content last updated . Spec covers 3 endpoints from goldinauctions.com.
Related APIs in MarketplaceSee all →
auctionzip.com API
Search and browse auction lots across the AuctionZip marketplace, view detailed lot information and complete auction catalogs, track historical prices realized, and discover auctioneers by name or location. Access auction schedules, item specifications, seller terms, and top-performing auctioneers.
sportscardinvestor.com API
Access data from sportscardinvestor.com.
sportscardspro.com API
Access data from sportscardspro.com.
sothebys.com API
Search and explore Sotheby's auction history to find sold lot results by artist, access detailed information including provenance and condition reports, and discover auction details all in one place. Get comprehensive data on specific lots and auctions to research art valuations, sales records, and collection histories.
130point.com API
Search for sold trading cards across eBay, Goldin, Heritage Auctions, Pristine Auction, MySlabs, and Fanatics Collect to find historical prices, sale dates, and marketplace information all in one place. Get comprehensive sales data to research card values and track market trends across multiple platforms instantly.
invaluable.com API
Search and browse fine art auction listings from Invaluable.com, discovering items by artist, auction house, or upcoming lots. Get detailed information about artworks, artists, and auction house catalogs to track pieces and stay informed about upcoming sales.
shopgoodwill.com API
Search and browse Goodwill online listings to find items, view detailed product information, shipping costs, and bid history, plus explore categories and discover featured or newly listed items. Filter results with advanced search options to discover exactly what you're looking for across Goodwill's inventory.
auctions.godaddy.com API
Search and browse domain auction listings on GoDaddy Auctions, including expired domains and closeout (Buy It Now) listings. Retrieve current bid prices, bid counts, auction end times, domain valuations, and backlink metrics across all active auction types.