Discover/Whisky Auctioneer API
live

Whisky Auctioneer APIwhiskyauctioneer.com

Access live auction pricing, lot details, and auction listings from Whisky Auctioneer. Current bids, reserve prices, bid counts, and bottle metadata via 3 endpoints.

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

What is the Whisky Auctioneer API?

The Whisky Auctioneer API gives developers access to live auction data across 3 endpoints covering auctions, lot search, and individual lot details. The search_lots endpoint returns real-time fields including current_bid_gbp, next_bid_gbp, reserve_gbp, reserve_met, and bids_placed for every lot in a given auction. Bottle metadata — distillery, age, vintage, cask type, ABV, and bottle size — is available at both search and lot-detail level.

This call costs1 credit / call— charged only on success
Try it
Zero-based page of the auction listing. Omit for the first page (which holds the live and upcoming auctions).
api.parse.bot/scraper/b31100ad-9cc5-47e1-a17a-bdbf240b39ca/<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/b31100ad-9cc5-47e1-a17a-bdbf240b39ca/list_auctions?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Lists Whisky Auctioneer auctions (live, upcoming and past) as shown on the site's auctions page, newest first, about 40 per page. Each row carries the auction_slug consumed by search_lots, its status (live | upcoming | past), type and start/end dates as printed on the site (e.g. '07 September 2026'). One request per call; has_more tells whether a further page exists. Only live auctions expose bid pricing through search_lots.

Input
ParamTypeDescription
pageintegerZero-based page of the auction listing. Omit for the first page (which holds the live and upcoming auctions).
Response
{
  "type": "object",
  "fields": {
    "page": "integer, the page returned",
    "auctions": "array of auction rows: auction_slug (key for search_lots), name, status (live|upcoming|past), auction_type, start_date, end_date",
    "has_more": "boolean, whether a next page exists"
  },
  "sample": {
    "data": {
      "page": 0,
      "auctions": [
        {
          "name": "August 2026 Auction",
          "status": "live",
          "end_date": "07 September 2026",
          "start_date": "28 August 2026",
          "auction_slug": "august-2026-auction",
          "auction_type": "Monthly Auction"
        },
        {
          "name": "July 2026 Auction",
          "status": "past",
          "end_date": "10 August 2026",
          "start_date": "31 July 2026",
          "auction_slug": "july-2026-auction",
          "auction_type": "Monthly Auction"
        }
      ],
      "has_more": true
    },
    "status": "success"
  }
}

About the Whisky Auctioneer API

Auctions and Lot Browsing

The list_auctions endpoint returns paginated auction rows ordered newest first, roughly 40 per page via a zero-based page parameter. Each row carries the auction_slug field, which is the key passed to search_lots, along with the auction status (live, upcoming, or past), auction_type, and start_date/end_date as shown on the site. This lets you programmatically identify which auctions are currently active before querying their lots.

Searching and Filtering Lots

search_lots takes an auction_slug from list_auctions and returns paginated lot rows with live pricing. Inputs include keyword for free-text search within the auction, sort for result ordering, and per_page to control how many lots are returned per page. Each lot row includes current_bid_gbp, next_bid_gbp, reserve_gbp, reserve_met, and bids_placed, as well as metadata fields: bottler, bottled year, size, ABV, sale location (UK or EU), and the lot_path key used by get_lot. The response also reports bid_lookup_failures — the count of lots on that page whose bid data could not be resolved — and the total matching lots across all pages.

Lot Detail

get_lot accepts a lot_path exactly as returned in search_lots results and returns the full lot record: a details object whose keys mirror the site's attribute labels (Distillery, Age, Vintage, Region, Bottler, Cask type, Bottle count, and others that vary per lot), image_url, bids_placed, reserve_gbp, reserve_met, location, and the site's numeric auction_id. The details object keys are not fixed — they reflect whatever attributes the site records for that specific bottle.

Coverage Notes

Hammer prices from closed auctions are only visible to logged-in users on the Whisky Auctioneer site and are not returned by any endpoint. The API is scoped to live, upcoming, and past auction listings and the lots within them.

Reliability & maintenanceVerified

The Whisky Auctioneer API is a managed, monitored endpoint for whiskyauctioneer.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when whiskyauctioneer.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 whiskyauctioneer.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
2h 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 real-time bid activity and reserve status across all lots in a live Whisky Auctioneer auction
  • Build a price-alert tool that monitors current_bid_gbp and reserve_met for specific bottles by keyword
  • Aggregate lot metadata (distillery, vintage, cask type, ABV) to analyse which bottle attributes correlate with higher bid counts
  • Compare reserve_gbp against current_bid_gbp across lots to surface lots trading near or below reserve
  • Enumerate upcoming auctions via list_auctions and pre-populate a watchlist before bidding opens
  • Fetch image_url and structured details from get_lot to display bottle profiles in a third-party app
  • Monitor bid_lookup_failures to assess data completeness before downstream processing
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 Whisky Auctioneer have an official developer API?+
Whisky Auctioneer does not publish a public developer API. This Parse API is the structured way to access auction and lot data from the site programmatically.
What does `search_lots` return, and how do I narrow results to a specific bottle?+
search_lots returns one row per lot including current_bid_gbp, next_bid_gbp, reserve_gbp, reserve_met, bids_placed, bottler, bottled year, ABV, size, and lot_path. Pass a keyword string to filter lots within the auction by title or description, and use auction_slug (from list_auctions) to target a specific auction. Omitting auction_slug defaults to the currently live auction.
Are hammer prices or sold-lot results available for past auctions?+
No. Hammer prices from closed auctions are only shown to logged-in users on the Whisky Auctioneer site and are not exposed by this API. The API covers live pricing fields (current_bid_gbp, reserve_gbp, bids_placed) for active auctions and descriptive metadata for all lots. You can fork this API on Parse and revise it to add a hammer-price endpoint if that data becomes accessible.
Is bid history or a list of individual bidders returned by any endpoint?+
Not currently. The API surfaces aggregate bid data — bids_placed, current_bid_gbp, and next_bid_gbp — but not a per-bid history or bidder identifiers. You can fork the API on Parse and revise it to add a bid-history endpoint if you need that granularity.
Why might some lot rows have a non-zero `bid_lookup_failures` count?+
bid_lookup_failures reports how many lots on the returned page could not have their live bid data resolved. This can occur when a lot's pricing information is temporarily unavailable. Lots with failures will be missing live pricing fields for that request; retrying the same page typically resolves transient failures.
Page content last updated . Spec covers 3 endpoints from whiskyauctioneer.com.
Related APIs in MarketplaceSee all →
whiskybase.com API
Search and discover whiskies from a comprehensive database, explore new releases, check marketplace prices and listings, and browse distilleries and their collections. Get instant access to top-rated whiskies, distillery information, and current market data all in one place.
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.
johnpyeauctions.co.uk API
Browse live auction listings from John Pye Auctions and search for specific items to find current titles and prices. Easily navigate through multiple pages of results to discover available lots and compare pricing.
goldinauctions.com API
Access data from goldinauctions.com.
encheres-publiques.com API
Search and browse real estate, vehicle, art, and equipment auctions across France, viewing detailed lot information and upcoming auction events from various organizers. Filter auction listings by category and type to find specific items and compare auction details to make informed bidding decisions.
antiquesreporter.com.au API
Search through historical auction listings from Antiques Reporter Australia, filtering by specific auction houses, cities, and years to find past sales. Sort and browse results to research antique valuations, market trends, and previous auction outcomes.
troostwijkauctions.com API
Search and browse auction lots on Troostwijk Auctions to find detailed information about items including specifications, current bidding status, images, and physical locations. Quickly access comprehensive lot details to help you make informed bidding decisions or discover items of interest.
everywatch.com API
Search for watch models and instantly access auction prices and sales data from over 500 auction houses through EveryWatch's unified marketplace. Get real-time insights into what similar watches are selling for to inform your buying or selling decisions.