# Wine Auctioneer Auction Scraper (`lulzasaur/wineauctioneer-scraper`) Actor

Scrape Wine Auctioneer live auction lots and past-auction sold prices (comps). Per-lot data: title, producer, current/winning bid (GBP), bid count, auction end time, vintage, region, country, varietal, size, ABV, image, and URL. Keyword search for both live and past auctions.

- **URL**: https://apify.com/lulzasaur/wineauctioneer-scraper.md
- **Developed by:** [lulz bot](https://apify.com/lulzasaur) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 auction lot records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Wine Auctioneer Auction Scraper

Scrape **[Wine Auctioneer](https://wineauctioneer.com)** — the online fine-wine auction platform from the team behind Whisky Auctioneer — for live auction lots and past-auction sold prices (comps).

### What it does

#### Live mode (default)

Scrapes every lot in the currently running auction, including **real-time bid data**:

- Lot number, title, and URL
- **Current bid** (GBP) and **number of bids placed** — pulled from the site's live bidding API, so values are up-to-the-second
- Next minimum bid amount and reserve price
- Auction name and **exact auction end time** (ISO 8601)
- Producer, vintage, wine type, varietal, classification, region, sub-region, country, closure (detail enrichment, on by default)
- Bottle size and ABV
- Seller location (UK / EU / USA warehouse)
- Bottle image

Optional keywords filter the live catalogue server-side (e.g. `bordeaux`, `romanee-conti`).

#### Past mode (sold-price comps)

Searches **ended auctions** by keyword and returns the **winning bid (hammer price)** for each sold lot — ideal for building fine-wine price histories, valuation models, and investment comps across Lafite, DRC, Petrus, Sassicaia, Champagne, Burgundy, and thousands of other bottles.

If no auction is currently live, live mode automatically falls back to past-auction comps so runs always return data.

### Input example

```json
{
    "mode": "past",
    "searchQueries": ["lafite"],
    "maxResults": 50,
    "scrapeDetails": true
}
```

### Output example

```json
{
    "lotNumber": "5280411",
    "title": "Domaine de la Romanee-Conti 1985 La Tâche",
    "producer": "Domaine de la Romanée-Conti",
    "status": "live",
    "currentBid": 2100,
    "winningBid": null,
    "currency": "GBP",
    "bidCount": 15,
    "nextBidAmount": 2200,
    "reservePrice": null,
    "auctionName": "August 2026 Auction",
    "auctionEndsAt": "2026-08-24T22:24:11.000Z",
    "vintage": "1985",
    "wineType": "Red Wine",
    "varietal": "Pinot Noir",
    "classification": null,
    "region": "Burgundy",
    "subRegion": null,
    "country": "France",
    "size": "75cl",
    "abv": null,
    "closure": "Cork",
    "sellerLocation": "UK",
    "imageUrl": "https://assets.wineauctioneer.com/styles/xlarge_1_1/s3/2026-08/5280411-001.jpg",
    "url": "https://wineauctioneer.com/wine-lot/5280411/domaine-de-la-romanee-conti-1985-la-tache",
    "searchKeyword": null,
    "scrapedAt": "2026-08-17T12:00:00.000Z"
}
```

For sold lots (`"status": "ended"`), `winningBid` carries the realized hammer price.

### Use cases

- **Wine investment comps** — realized prices for the same bottle across many past auctions
- **Live auction sniping / monitoring** — track current bids and bid counts as the auction runs
- **Cellar valuation** — price whole collections against real auction results
- **Market research** — producer, vintage, and region-level price trends

### Notes

- No login or proxy required by default; the actor uses browser-grade request fingerprints. If you see `Blocked (406/403)` warnings, enable the Apify RESIDENTIAL proxy in the input.
- Prices are in GBP (the site's base currency) unless the page reports otherwise.
- Please scrape responsibly and respect the website's terms of service.

# Actor input Schema

## `mode` (type: `string`):

'live' scrapes lots in the currently running auction (current bids, bid counts, auction end time). 'past' searches ended auctions by keyword and returns sold-price comps (winning bid). If no auction is live, 'live' automatically falls back to past-auction comps.

## `searchQueries` (type: `array`):

Optional keywords (e.g. 'lafite', 'romanee-conti', 'sassicaia 2016'). In live mode they filter the current auction's lots; leave empty to scrape all live lots in catalogue order. In past mode each keyword is searched across ended auctions (default 'lafite' if empty).

## `maxResults` (type: `integer`):

Maximum number of lot records to return across all keywords. Default 50.

## `scrapeDetails` (type: `boolean`):

When enabled (default), each live lot is enriched from its detail page with producer, vintage, wine type, varietal, classification, sub-region, and closure (one extra request per lot). Past mode always fetches detail pages since that's where the winning bid lives.

## `proxyConfiguration` (type: `object`):

Proxy settings. The site serves full pages to browser-fingerprinted requests without a proxy (the default). Enable Apify RESIDENTIAL proxy only if you see Blocked (406/403) warnings.

## Actor input object example

```json
{
  "mode": "live",
  "searchQueries": [],
  "maxResults": 50,
  "scrapeDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "live",
    "searchQueries": [],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("lulzasaur/wineauctioneer-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "live",
    "searchQueries": [],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("lulzasaur/wineauctioneer-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "live",
  "searchQueries": [],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call lulzasaur/wineauctioneer-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lulzasaur/wineauctioneer-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/ZsUbeHFCeMsJeiTwZ/builds/PXwuDEZdKoPQOrlln/openapi.json
