LiveAuctioneers Auction Lot Data Scraper avatar

LiveAuctioneers Auction Lot Data Scraper

Pricing

from $5.00 / 1,000 lot scrapeds

Go to Apify Store
LiveAuctioneers Auction Lot Data Scraper

LiveAuctioneers Auction Lot Data Scraper

Scrape public LiveAuctioneers lots by keyword or URL, including titles, bids, estimates, sellers, locations, images, and descriptions.

Pricing

from $5.00 / 1,000 lot scrapeds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Categories

Share

LiveAuctioneers Scraper

Scrapes public LiveAuctioneers lot data from keyword searches or specific item URLs. It returns one homogeneous dataset record per lot, including title, lot number, auction, estimates, current bid, seller, location, images, and available detail text.

Input

Use searchQueries, for example:

{ "searchQueries": ["Cartier watch"], "maxResults": 50, "maxPages": 2, "includeDetails": true }

You can also pass startUrls with a LiveAuctioneers /search/ or /item/ URL. Search results are paginated in the actor; item URLs return the single lot.

Output

Dataset records use stable camelCase fields such as itemId, title, url, auctionTitle, lotNumber, price, lowEstimate, highEstimate, leadingBid, bidCount, sellerName, imageUrls, description, and condition.

The actor uses LiveAuctioneers’ public server-rendered HTML state. It does not log in, bid, access private data, or accept credentials. Site markup and access controls can change; a blocked all-request run is reported as an error rather than producing fabricated records. Run diagnostics are written to the OUTPUT key-value record.

Pricing

EventPrice
lot-scraped$0.005

Billing is pay per event. One lot-scraped event is charged only after a validated lot has been written to the dataset. Valid searches with no matching lots and invalid inputs do not produce billable events. There is no start fee; each run is capped by maxResults.

When to use this actor

Use it for auction-market research, collectible discovery, auction-house monitoring, and price-estimate datasets. It is limited to public LiveAuctioneers search and item pages; it does not place bids, access private bidder data, or scrape authenticated accounts.

Local development

npm ci
npm test

What data does LiveAuctioneers Scraper return?

FieldTypeDescription
itemIdintegerLiveAuctioneers lot identifier.
titlestringPublic lot title.
urlstringCanonical public LiveAuctioneers lot URL.
sourceUrlstringSearch or item page that produced this record.
descriptionstring or nullPublic lot description when available.
conditionstring or nullCondition report when available.
categorystring or nullLot category when available.
auctionTitlestring or nullAuction or catalog title.
auctionIdinteger or nullLiveAuctioneers catalog identifier.
lotNumberstring or nullLot number within the auction.
auctionStatusstring or nullPublic catalog status.
saleStartAtstring or nullEstimated sale start time in ISO 8601 format.
saleEndAtstring or nullEstimated lot end time in ISO 8601 format.
pricenumber or nullCurrent leading bid, sale price, or buy-now price, depending on priceType.
priceTypestring or nullIndicates whether price is salePrice, leadingBid, or buyNow.
currencystring or nullCurrency code shown by the source, such as USD.
lowEstimatenumber or nullLower auction estimate.
highEstimatenumber or nullUpper auction estimate.
leadingBidnumber or nullCurrent leading bid when present.
bidCountinteger or nullNumber of bids shown by the source.
buyNowPricenumber or nullBuy-now price when present.
sellerIdinteger or nullAuction house identifier.
sellerNamestring or nullAuction house name.
sellerRatingnumber or nullSeller rating shown by LiveAuctioneers.

Run LiveAuctioneers Scraper with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/liveauctioneers-scraper').call({
"searchQueries": [
"watch"
],
"startUrls": [],
"maxResults": 100,
"maxPages": 3,
"includeDetails": true,
"requestTimeoutSecs": 30
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Responsible use

Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.

Support

When reporting a problem, include the Actor run ID, a redacted input, the expected result, and a small public example URL when applicable. Do not post API tokens, cookies, credentials, or personal data in an issue.

Frequently asked questions

Can I schedule LiveAuctioneers Scraper?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/liveauctioneers-scraper through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.