# LiveAuctioneers Auction Lot Scraper (`lulzasaur/liveauctioneers-scraper`) Actor

Scrape LiveAuctioneers online auctions (art, antiques, jewelry, watches, coins, collectibles) by keyword. Per-lot data: title, low/high estimate, current & sold price, bid count, auction house, sale date, location, image, and URL. Optional detail mode adds category.

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

## Pricing

from $10.00 / 1,000 results

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

## LiveAuctioneers Auction Lot Scraper

Scrape auction lots from [LiveAuctioneers](https://www.liveauctioneers.com) — one of the largest online marketplaces for live and timed auctions of art, antiques, jewelry, watches, coins, and collectibles from thousands of auction houses worldwide.

Search by keyword and get structured, per-lot data: title, low/high pre-sale estimate, current bid, opening/start price, sold price, bid count, the auction house selling it, the sale date, lot location, the primary image, and a direct link to the lot.

### What you get

Each result is one auction lot:

| Field | Description |
|-------|-------------|
| `itemId` | LiveAuctioneers item ID |
| `title` | Lot title |
| `category` | Category (e.g. "Watches") — only when **Scrape Item Details** is enabled |
| `estimateLow` / `estimateHigh` | Pre-sale estimate range |
| `currency` | Currency code (e.g. USD) |
| `currentBid` | Current leading bid (null if no bids yet) |
| `startPrice` | Opening / starting bid |
| `salePrice` | Final hammer/sold price (only when the lot has sold) |
| `isSold` | Whether the lot has sold |
| `bidCount` | Number of bids placed |
| `buyNowPrice` | Buy-now price, if offered |
| `auctionHouse` | Name of the selling auction house |
| `sellerId` | Auction house ID |
| `catalogId` / `catalogTitle` | Auction catalog the lot belongs to |
| `lotNumber` | Lot number within the catalog |
| `saleDate` | Auction start date/time (ISO 8601) |
| `isLiveAuction` / `isTimedAuction` | Auction format |
| `lotLocation` | City, region, country of the lot |
| `shortDescription` | Short lot description |
| `imageUrl` | Primary lot image |
| `itemUrl` | Direct link to the lot page |
| `searchKeyword` | The keyword this result came from |

When **Scrape Item Details** is enabled, each lot is additionally enriched with `categoryPath`, full `description`, `conditionReport`, and `dimensions` from its detail page.

### Input

```json
{
  "searchQueries": ["rolex", "pokemon"],
  "maxResults": 100,
  "scrapeDetails": false,
  "proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
```

- **searchQueries** — one or more keywords to search.
- **maxResults** — cap on total records (use `0` for all matching lots via pagination).
- **scrapeDetails** — enrich each lot with category + description from its detail page (doubles requests; off by default).
- **proxyConfiguration** — RESIDENTIAL proxy is recommended and default (the site is protected by Imperva/Incapsula).

### Notes

- LiveAuctioneers pages are server-rendered; this scraper reads the embedded application state directly, so results are clean and structured (no brittle HTML scraping).
- Pricing is pay-per-result — you are billed per lot returned to the dataset.

# Actor input Schema

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

List of search keywords (e.g. 'rolex', 'pokemon', 'ming vase', 'gold coin'). Each keyword is searched on LiveAuctioneers and scraped with pagination.

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

Maximum number of item records to return across all keywords. Use 0 to fetch ALL matching items via pagination (can be thousands). Default 100.

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

When enabled, each item is enriched from its detail page with category, category path, full description, condition report, and dimensions. This doubles the number of requests (each detail page is a separate protected fetch), so leave it OFF for a faster list-only scrape. Default OFF.

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

Proxy settings. LiveAuctioneers is protected by Imperva/Incapsula, so RESIDENTIAL proxy is strongly recommended (and is the default).

## Actor input object example

```json
{
  "searchQueries": [
    "rolex",
    "pokemon"
  ],
  "maxResults": 100,
  "scrapeDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# 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 = {
    "searchQueries": [
        "rolex",
        "pokemon"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("lulzasaur/liveauctioneers-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 = {
    "searchQueries": [
        "rolex",
        "pokemon",
    ],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

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

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

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

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "rolex",
    "pokemon"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call lulzasaur/liveauctioneers-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=lulzasaur/liveauctioneers-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/IOOOxwqffgsX66RTP/builds/m7NZNsNeCeFhRb0hf/openapi.json
