# LiveAuctioneers Product Scraper - Cheap🔍🏛️🌍 (`scrapestorm/liveauctioneers-product-scraper-cheap`) Actor

This tool scrapes data from LiveAuctioneers listings, including title 🏛️, item images 📸, estimated price💰, current bid price 💵, number of bids 📊, auction house details 🏢, status ⏳, and direct item links 🔗.  Perfect for market research, collectibles tracking, and price analysis 📈

- **URL**: https://apify.com/scrapestorm/liveauctioneers-product-scraper-cheap.md
- **Developed by:** [Storm\_Scraper](https://apify.com/scrapestorm) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 32 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$0.99 / 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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Product Scraper 🔍📊🌍 - Auction Intelligence at Scale

The LiveAuctioneers Product Scraper is a fast, reliable, and powerful tool that extracts structured product listings from LiveAuctioneers, one of the world’s largest online auction marketplaces.

Whether you're tracking auction prices, analyzing collectibles markets, building investment datasets, or monitoring rare items, this scraper delivers clean and structured auction data at scale — instantly and with no coding required.

---

### 🔍 What This Scraper Does

Simply provide LiveAuctioneers catalog, category, or search URLs, and the scraper will return:

✅ All available auction items matching your search (up to your chosen limit)
✅ Clean, structured product data including prices, estimates, auction details, and more

| Field           | Description                              |
| --------------- | ---------------------------------------- |
| `item_id`       | Unique item identifier                   |
| `title`         | Auction item title                       |
| `image`         | Main item image URL                      |
| `estimate_low`  | Low estimated value                      |
| `estimate_high` | High estimated value                     |
| `current_price` | Current bid price                        |
| `bids`          | Number of bids                           |
| `auction_house` | Auction house name                       |
| `location`      | Auction location                         |
| `status`        | Auction status (time left / live status) |
| `date_info`     | Auction closing or event date            |
| `url`           | Direct item page URL                     |
| `source_url`    | Original category/search URL             |
| `page_number`   | Pagination page number                   |

⚡ Average performance: Extracting 50–100 items usually takes 30–60 seconds depending on category size.

---

### 🛠 How to Use the Scraper

#### 1️⃣ Provide LiveAuctioneers URLs

Supported pages:

* `/catalog/`
* `/c/`
* `/search/`

Example:

````

urls = \[
"https://www.liveauctioneers.com/catalog/418051\_magnificent-jewels-featuring-the-azure-blue/",
"https://www.liveauctioneers.com/c/desk-accessories/32/",
"https://www.liveauctioneers.com/search/?keyword=BMW\&status=online"
]

```

---

#### 2️⃣ Set max items per URL

```

{
"maxItems": 50
}

```

---

#### 3️⃣ Run the scraper

Export your results in:

* JSON
* CSV
* Excel
* XML
* HTML

---

### 💰 Pricing

This scraper uses a pay-per-result model.

You are only charged for successful results.

**Price: $1.99 USD per 1,000 results**

---

### 🌟 Why Use This Scraper?

* 🏺 Auction Market Intelligence — Track collectibles and rare items
* 📈 Price Monitoring — Analyze auction price trends over time
* 🔎 Investment Research — Identify undervalued or high-demand items
* 🚀 Fast & Reliable — Handles large auction datasets efficiently
* 🌍 Global Coverage — Works across LiveAuctioneers categories and catalogs

---

### 📥 Input Schema

```

{
"maxItems": 100,
"urls": \[
"https://www.liveauctioneers.com/catalog/418051\_magnificent-jewels-featuring-the-azure-blue/",
"https://www.liveauctioneers.com/c/desk-accessories/32/",
"https://www.liveauctioneers.com/search/?keyword=BMW\&status=online"
]
}

```

---

### 📤 Output Example

```

{
"item\_id": "232445286",
"title": "Tiffany Studios "Grapevine" Postage Scale",
"image": "https://p1.liveauctioneers.com/1044/417832/232445286\_1\_x.jpg",
"estimate\_low": "600",
"estimate\_high": "800",
"current\_price": "450",
"bids": "N/A",
"auction\_house": "Fontaine's Auction Gallery",
"location": "N/A",
"status": "6 days Left",
"date\_info": "N/A",
"url": "https://www.liveauctioneers.com/item/232445286\_tiffany-studios-grapevine-postage-scale",
"source\_url": "https://www.liveauctioneers.com/c/desk-accessories/32/",
"page\_number": 3
}

````

---

### 🧾 Output Explanation

Each item contains:

* **item_id** → unique auction item ID
* **title** → item name
* **image** → main image URL
* **estimate_low / estimate_high** → auction estimate range
* **current_price** → current bid price
* **bids** → number of bids
* **auction_house** → selling auction house
* **location** → auction location
* **status** → auction status or time remaining
* **date_info** → auction date
* **url** → direct item page
* **source_url** → original listing page
* **page_number** → pagination index

---

### 🔥 Use Cases

* Auction price tracking
* Collectibles research
* Art & antiques market analysis
* Investment scouting
* Rare item monitoring
* Resale arbitrage opportunities

---

### 📫 Support

⭐ Leave a star if you like this tool
🌍 For support, custom scraping needs, or issues, contact via Apify platform or Storm_Scraper 🌪️

# Actor input Schema

## `urls` (type: `array`):

List of LiveAuctioneers catalog, category, or search URLs to scrape. Supports: /catalog/, /c/, and /search/ pages.
## `maxItems` (type: `integer`):

Maximum number of products to scrape per URL across all pages

## Actor input object example

```json
{
  "urls": [
    "https://www.liveauctioneers.com/catalog/418051_magnificent-jewels-featuring-the-azure-blue/",
    "https://www.liveauctioneers.com/c/desk-accessories/32/",
    "https://www.liveauctioneers.com/search/?keyword=BMW&status=online"
  ],
  "maxItems": 50
}
````

# Actor output Schema

## `overview` (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 = {
    "urls": [
        "https://www.liveauctioneers.com/catalog/418051_magnificent-jewels-featuring-the-azure-blue/",
        "https://www.liveauctioneers.com/c/desk-accessories/32/",
        "https://www.liveauctioneers.com/search/?keyword=BMW&status=online"
    ],
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapestorm/liveauctioneers-product-scraper-cheap").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 = {
    "urls": [
        "https://www.liveauctioneers.com/catalog/418051_magnificent-jewels-featuring-the-azure-blue/",
        "https://www.liveauctioneers.com/c/desk-accessories/32/",
        "https://www.liveauctioneers.com/search/?keyword=BMW&status=online",
    ],
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("scrapestorm/liveauctioneers-product-scraper-cheap").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 '{
  "urls": [
    "https://www.liveauctioneers.com/catalog/418051_magnificent-jewels-featuring-the-azure-blue/",
    "https://www.liveauctioneers.com/c/desk-accessories/32/",
    "https://www.liveauctioneers.com/search/?keyword=BMW&status=online"
  ],
  "maxItems": 50
}' |
apify call scrapestorm/liveauctioneers-product-scraper-cheap --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "LiveAuctioneers Product Scraper - Cheap🔍🏛️🌍",
        "description": "This tool scrapes data from LiveAuctioneers listings, including title 🏛️, item images 📸, estimated price💰, current bid price 💵, number of bids 📊, auction house details 🏢, status ⏳, and direct item links 🔗.  Perfect for market research, collectibles tracking, and price analysis 📈",
        "version": "0.0",
        "x-build-id": "l6IBKelsLaq9nqNcQ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapestorm~liveauctioneers-product-scraper-cheap/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapestorm-liveauctioneers-product-scraper-cheap",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapestorm~liveauctioneers-product-scraper-cheap/runs": {
            "post": {
                "operationId": "runs-sync-scrapestorm-liveauctioneers-product-scraper-cheap",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapestorm~liveauctioneers-product-scraper-cheap/run-sync": {
            "post": {
                "operationId": "run-sync-scrapestorm-liveauctioneers-product-scraper-cheap",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "urls"
                ],
                "properties": {
                    "urls": {
                        "title": "LiveAuctioneers URLs",
                        "type": "array",
                        "description": "List of LiveAuctioneers catalog, category, or search URLs to scrape. Supports: /catalog/, /c/, and /search/ pages.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum items per URL",
                        "type": "integer",
                        "description": "Maximum number of products to scrape per URL across all pages",
                        "default": 50
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
