RB Auction Scraper
Scrapes auction data from RB Auction API with cookie authentication. Supports filtering by industries, listing statuses, and pagination with configurable limits.
What it extracts
Every field below comes from the Actor’s published dataset schema.
| Field | Description | Type |
|---|---|---|
imageUrl | Image | image |
assetDescription | Description | text |
manufacturerLocalized | Manufacturer | text |
modelLocalized | Model | text |
price | Price | number |
priceCurrency | Currency | text |
priceInUSD | Price (USD) | number |
dateOfEvent | Auction Date | date |
locationName | Location | text |
serialNumber | VIN/Serial | text |
listingStatus | Status | text |
manufactureYear | Year | number |
features | Features | text |
Input parameters
Generated from the Actor’s input schema — the same fields the Apify console shows.
| Parameter | Type | Required | Description |
|---|---|---|---|
urls | array | Required | One or more RB Auction category URLs, e.g. https://www.rbauction.com/cp/mulcher-attachment?listingStatuses=Sold |
listing_statuses | string | Optional | Select a status to include. |
date_from | string | Optional | Start date for auction filtering. Use YYYY-MM-DD or relative format like '7 days', '2 weeks', '1 month' |
date_to | string | Optional | End date for auction filtering. Use YYYY-MM-DD or relative format like '7 days', '2 weeks', '1 month' |
max_items | integer | Optional | Maximum number of items to scrape. Free plan users are limited to 20 results per run and 1,000 results per month. |
cookies | array | Optional | RBAuction session cookies in browser export format. Follow these steps to get the cookies: 1. Install EditThisCookie chrome extension 2. Login to your rbauction account 3. Click on the [extension](https://chromewebstore.google.com/detail/cookie-editor/hlkenndednhfkekhgcdicdfddnkalmdm) and export the rbauction cookies 4. Paste the copied contents here [Video - How to get cookies (0:14)](https://www.youtube.com/watch?v=YuKp9BlVgNM) |
API access
Run this Actor from your own code over the Apify API.
{
"urls": [
"https://www.rbauction.com/cp/mulcher-attachment?listingStatuses=Sold"
]
}curl -X POST \
"https://api.apify.com/v2/acts/logical_scrapers~rbauction-auctions-scraper/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"urls":["https://www.rbauction.com/cp/mulcher-attachment?listingStatuses=Sold"]}'import { ApifyClient } from 'apify-client'
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' })
const run = await client.actor('logical_scrapers~rbauction-auctions-scraper').call({
"urls": [
"https://www.rbauction.com/cp/mulcher-attachment?listingStatuses=Sold"
]
})
const { items } = await client.dataset(run.defaultDatasetId).listItems()
console.log(items)from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("logical_scrapers~rbauction-auctions-scraper").call(run_input={
"urls": [
"https://www.rbauction.com/cp/mulcher-attachment?listingStatuses=Sold",
],
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)Runs are executed on Apify. Create an API token in your Apify account, then call the Actor over REST or with the official client for your language. The same input object works in the Apify console, so you can test interactively before automating.
Pricing
Data not currently verified. This Actor's pricing model is not declared in our source repository.
Current rates are published on the Apify listing and can change, so they are not duplicated here. See pricing on Apify
Reliability
Measured across all public Goldmine Actors on Apify, 2026-08-24. This is an account-level figure, not a per-Actor benchmark — per-Actor speed and completeness benchmarks are not yet published. Source.