# Ritchie Bros. Sold Agriculture Equipment - Auction Prices

**Use case:** 

Scrape sold tractor, combine, sprayer and other agricultural equipment auction lots from Ritchie Bros. (rbauction.com) for the last 12 months: make, model, year, usage, location and the sold price wherever the site publishes one. Repeat runs return only newly sold lots.

## Input

```json
{
  "industries": [
    "agriculture"
  ],
  "mode": "auto",
  "lookbackDays": 365,
  "fetchPdpPrices": true,
  "maxItems": 100000,
  "concurrency": 6,
  "impersonate": "chrome",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "sold_date": {
    "label": "Sold date (UTC)",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "buying_format": {
    "label": "Buying format",
    "format": "string"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "sold_price_local": {
    "label": "Sold price (local currency)",
    "format": "number"
  },
  "sold_price_usd": {
    "label": "Sold price (USD)",
    "format": "number"
  },
  "price_source": {
    "label": "Price source",
    "format": "string"
  },
  "url": {
    "label": "Lot URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Ritchie Bros. Sold Lots Scraper](https://apify.com/artsiom_k/ritchie-bros-auction-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/artsiom_k/ritchie-bros-auction-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/artsiom_k/ritchie-bros-auction-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
