# TractorHouse Scraper — Farm Equipment Listings & Prices (`fervent_bus/tractorhouse-scraper`) Actor

Extract farm equipment listings from TractorHouse.com with detailed specs, pricing, and seller information. Search by category, manufacturer, year range, location, horsepower, and price filters.

- **URL**: https://apify.com/fervent\_bus/tractorhouse-scraper.md
- **Developed by:** [Archit Khurana](https://apify.com/fervent_bus) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

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 examples already wired to this Actor's own input schema, see the [API](#api) section below.

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`).

# README

## TractorHouse Scraper — Farm Equipment Listings & Prices

Extract farm equipment listings from TractorHouse.com, North America's largest online marketplace for new and used tractors, combines, planters, sprayers, and agricultural machinery.

### What does TractorHouse Scraper do?

This actor scrapes equipment listings from TractorHouse.com with detailed specifications, pricing, and seller information. Search by category, manufacturer, year range, location, horsepower, and price filters.

**Input:** Category, filters (manufacturer, year, price, location, horsepower), or direct search URL\
**Output:** Structured farm equipment data (title, price, specs, location, seller, URL)

### Why scrape TractorHouse?

- **Market Intelligence:** Track farm equipment prices, inventory trends, and seller competition
- **Fleet Management:** Monitor available equipment for farm expansion or fleet upgrades
- **Dealer Analysis:** Research competitor pricing and inventory for dealerships
- **Equipment Valuation:** Compare similar equipment for accurate appraisals
- **Lead Generation:** Identify equipment sellers for B2B outreach

### Features

✅ **Category Search** — Browse tractors, combines, planters, sprayers, tillage, hay equipment\
✅ **Advanced Filters** — Manufacturer, year range, price, location, horsepower, condition\
✅ **Detailed Data** — Title, price, manufacturer, model, year, hours, HP, condition, seller\
✅ **Geo Search** — Filter by state/province or search radius from zip code\
✅ **Pagination** — Scrape 1-10,000+ listings across multiple pages\
✅ **Proxy Support** — Residential proxies for reliable access

### Input Schema

```json
{
  "searchMode": "filters",
  "category": "tractors",
  "manufacturer": "John Deere",
  "condition": "used",
  "yearMin": 2015,
  "yearMax": 2024,
  "priceMin": 50000,
  "priceMax": 200000,
  "location": "Iowa",
  "horsepowerMin": 150,
  "horsepowerMax": 300,
  "maxResults": 100
}
```

#### Input Parameters

- **searchMode** — `url` (direct TractorHouse URL) or `filters` (category/filter search)
- **startUrl** — Direct TractorHouse search or category URL
- **category** — Equipment type: `tractors`, `combines`, `planters`, `sprayers`, `tillage`, `hay-forage`, etc.
- **manufacturer** — Brand filter (e.g., John Deere, Case IH, New Holland, Kubota)
- **condition** — `all`, `new`, or `used`
- **yearMin/yearMax** — Manufacturing year range (1950-2027)
- **priceMin/priceMax** — Price range in USD
- **location** — State or province filter (e.g., Iowa, Nebraska, Ontario)
- **zipCode** — Center point for radius search
- **searchRadius** — Search radius in miles (10-1000)
- **horsepowerMin/horsepowerMax** — Horsepower range for tractors/powered equipment
- **maxResults** — Maximum listings to scrape (1-10,000)
- **proxyConfiguration** — Apify proxy settings (residential recommended)

### Output Example

```json
{
  "title": "2018 John Deere 8370R",
  "url": "https://www.tractorhouse.com/listings/...",
  "price": "$285,000",
  "manufacturer": "John Deere",
  "model": "8370R",
  "year": "2018",
  "hours": "1245",
  "horsepower": "370",
  "condition": "Used",
  "location": "Des Moines, Iowa",
  "seller": "Heartland Equipment",
  "stockNumber": "TH-38472",
  "category": "tractors",
  "scrapedAt": "2026-09-21T14:30:00.000Z"
}
```

### Use Cases

**Agricultural Operations:**\
Monitor available equipment for farm expansion, compare pricing for fleet upgrades

**Equipment Dealers:**\
Track competitor inventory, analyze pricing trends, identify underpriced acquisition opportunities

**Market Research:**\
Study equipment depreciation rates, regional price variations, seasonal inventory patterns

**Appraisal Services:**\
Build comparable sales databases for accurate equipment valuations

**Lead Generation:**\
Identify sellers of specific equipment models for targeted outreach

### Setup & Usage

1. **Configure Input** — Select category, set filters, or provide direct URL
2. **Set Filters** — Manufacturer, year, price, location, horsepower
3. **Choose Max Results** — 1-10,000 listings
4. **Enable Proxies** — Residential proxies recommended
5. **Run Actor** — Data exports to JSON, CSV, Excel

### Data Fields

| Field | Type | Description |
|-------|------|-------------|
| title | string | Full equipment listing title |
| url | string | Direct link to listing |
| price | string | Listed price (USD) |
| manufacturer | string | Equipment brand/manufacturer |
| model | string | Model designation |
| year | string | Manufacturing year |
| hours | string | Engine/usage hours |
| horsepower | string | Engine horsepower |
| condition | string | New or Used |
| location | string | Equipment location (city, state) |
| seller | string | Dealership or seller name |
| stockNumber | string | Stock/inventory number |
| category | string | Equipment category |
| scrapedAt | datetime | Extraction timestamp (ISO 8601) |

### Categories Supported

- **Tractors** — All sizes and configurations
- **Combines** — Grain harvesters and headers
- **Planters & Seeders** — Planting equipment
- **Sprayers** — Self-propelled and pull-type
- **Tillage** — Plows, discs, cultivators, field cultivators
- **Hay & Forage** — Balers, mowers, tedders, rakes
- **Harvesting** — Cotton pickers, corn heads, platforms
- **Loaders & Attachments** — Front-end loaders, buckets, forks
- **Skid Steers** — Compact utility loaders
- **Utility Vehicles** — ATVs, UTVs, farm vehicles
- **Trailers** — Equipment and livestock trailers

### Integration

**Apify API:** Real-time access via GET/POST\
**Webhooks:** Trigger workflows on completion\
**Schedules:** Daily/weekly inventory monitoring\
**Zapier/Make:** Connect to 5,000+ apps

### Cost Efficiency

- **$0.50-$2 per 1,000 listings** (typical)
- Residential proxies recommended for scale
- 1024 MB memory sufficient for most runs

### Support & Resources

📖 [Full Documentation](https://apify.com/fervent_bus/tractorhouse-scraper)\
💬 [Discord Community](https://discord.gg/jyEM2PRvMU)\
📧 Email: support@apify.com

***

**MCP & AI Agent Compatible**\
This actor follows Apify MCP conventions for seamless integration with Claude, ChatGPT, and autonomous AI agents.

Compatible with Claude, ChatGPT & AI agents via Apify MCP.

# Actor input Schema

## `searchMode` (type: `string`):

Choose how to search: provide a direct listing URL, or use category/filter search

## `startUrl` (type: `string`):

Direct URL from TractorHouse.com search results or category page (e.g., https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/category/1092/tractors)

## `category` (type: `string`):

Primary equipment category to scrape

## `manufacturer` (type: `string`):

Filter by equipment manufacturer (leave empty for all brands)

## `condition` (type: `string`):

Filter by equipment condition

## `yearMin` (type: `integer`):

Minimum manufacturing year (leave empty for no minimum)

## `yearMax` (type: `integer`):

Maximum manufacturing year (leave empty for no maximum)

## `priceMin` (type: `integer`):

Minimum price in USD (leave empty for no minimum)

## `priceMax` (type: `integer`):

Maximum price in USD (leave empty for no maximum)

## `location` (type: `string`):

Filter by US state or Canadian province (e.g., Iowa, Nebraska, Ontario)

## `zipCode` (type: `string`):

Search near a specific zip or postal code

## `searchRadius` (type: `integer`):

Search radius from zip code in miles (requires zipCode)

## `horsepowerMin` (type: `integer`):

Minimum horsepower (for tractors and powered equipment)

## `horsepowerMax` (type: `integer`):

Maximum horsepower (for tractors and powered equipment)

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

Maximum number of listings to scrape

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

Proxy settings for the scraper

## Actor input object example

```json
{
  "searchMode": "filters",
  "startUrl": "https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/category/1092/tractors",
  "category": "tractors",
  "manufacturer": "John Deere, Case IH, New Holland, Kubota, Massey Ferguson",
  "condition": "all",
  "yearMin": 2010,
  "yearMax": 2024,
  "priceMin": 5000,
  "priceMax": 100000,
  "location": "Iowa, Nebraska, Kansas, Ontario",
  "zipCode": "50309",
  "searchRadius": 100,
  "horsepowerMin": 50,
  "horsepowerMax": 300,
  "maxResults": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `title` (type: `string`):

No description

## `url` (type: `string`):

No description

## `price` (type: `string`):

No description

## `manufacturer` (type: `string`):

No description

## `model` (type: `string`):

No description

## `year` (type: `string`):

No description

## `hours` (type: `string`):

No description

## `horsepower` (type: `string`):

No description

## `condition` (type: `string`):

No description

## `location` (type: `string`):

No description

## `seller` (type: `string`):

No description

## `stockNumber` (type: `string`):

No description

## `category` (type: `string`):

No description

## `scrapedAt` (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 = {
    "startUrl": "https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/category/1092/tractors",
    "maxResults": 3,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("fervent_bus/tractorhouse-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 = {
    "startUrl": "https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/category/1092/tractors",
    "maxResults": 3,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

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

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

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

```

## CLI example

```bash
echo '{
  "startUrl": "https://www.tractorhouse.com/listings/farm-equipment/for-sale/list/category/1092/tractors",
  "maxResults": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call fervent_bus/tractorhouse-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,fervent_bus/tractorhouse-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/NPa6tsKfi6QhDWslK/builds/3qsSe74D3dgX4rtyY/openapi.json
