MachineryTrader Equipment Scraper avatar

MachineryTrader Equipment Scraper

Pricing

Pay per event

Go to Apify Store
MachineryTrader Equipment Scraper

MachineryTrader Equipment Scraper

Scrapes MachineryTrader.com heavy-equipment listings by keyword and/or manufacturer, paginating search-results pages into structured rows: title, manufacturer, category, price, hours, year, location, seller, and phone.

Pricing

Pay per event

Rating

0.0

(0)

Developer

DevilScrapes

DevilScrapes

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 hours ago

Last modified

Categories

Share


🎯 What this scrapes

MachineryTrader.com is the largest US heavy-equipment marketplace, listing hundreds of thousands of excavators, cranes, dozers, loaders, and other machines for sale. It publishes no public API. This Actor walks its search-results pages by keywords and/or manufacturer, pulling every listing card's title, manufacturer, category, price (or "Call for Price"), meter hours, model year, location, seller, phone, and listing URL — paginated up to whatever maxItems / maxPages cap you set.

🔥 What we handle for you

  • 🛡️ We rotate browser fingerprints (curl-cffi impersonation — Chrome / Firefox / Safari) so the target sees real-browser TLS, not Python.
  • 🌐 We rotate residential proxies through Apify Proxy on every block — fresh session_id, fresh exit IP, pinned to the US.
  • 🔁 We retry with exponential backoff on 408 / 429 / 5xx and honour Retry-After. Up to 5 attempts per page.
  • 🧱 We back off when the target rate-limits. Partial successes surface with a clear status message; we never silently return empty datasets.
  • 🧊 We keep the dataset clean — Pydantic-validated rows, ISO-8601 timestamps, stable listing IDs.
  • 💰 You pay only for results that land. No data → no charge beyond the small actor-start warm-up fee.

💡 Use cases

  • Dealer inventory monitoring — track new listings and price changes for a manufacturer or keyword across runs.
  • Market research — benchmark asking prices by category, manufacturer, year, and hours across the used heavy-equipment market.
  • Fleet buyer sourcing — build a shortlist of machines matching a keyword search, with seller contact info attached.
  • Price-trend datasets — feed structured listing data into your own valuation or comp-analysis models.

⚙️ How to use it

  1. Click Try for free at the top of the page.
  2. Set keywords and/or manufacturer — most fields have sensible defaults.
  3. Click Start. Output streams into the run's dataset.
  4. Export from Storage → Dataset as JSON, CSV, or Excel — or fetch via the API.

📥 Input

FieldTypeRequiredDefaultNotes
keywordsstringno"excavator"Free-text search term, maps to Keywords=.
manufacturerstringnonullManufacturer filter, maps to Manufacturer= (e.g. "CATERPILLAR").
maxItemsintegerno150Total rows to collect across pages, across the whole run.
maxPagesintegerno6Safety valve on page count; pagination stops at whichever of maxItems/maxPages is hit first.
proxyConfigurationobjectno{"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"], "apifyProxyCountry": "US"}Standard Apify proxy editor, pinned to RESIDENTIAL + US.

Example input

{
"keywords": "excavator",
"manufacturer": null,
"maxItems": 150,
"maxPages": 6,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "US"
}
}

📤 Output

Every row is one dataset item.

FieldTypeNotes
listing_idstringListing ID from the card wrapper.
titlestringListing title, e.g. "2015 GROVE GHC130".
manufacturerstringEquipment manufacturer / brand.
categorystringEquipment category.
priceinteger | nullAsking price in whole currency units. null for "Call for Price".
currencystringISO-4217 currency code, e.g. "USD".
hoursinteger | nullRecorded meter hours, when published.
yearinteger | nullModel year.
locationstringListing location.
sellerstringSeller / dealer name.
phonestring | nullSeller phone number, when published.
urlstringAbsolute URL to the listing detail page.
scraped_atstringISO-8601 UTC timestamp of the fetch.

Example output

{
"listing_id": "258197815",
"title": "2015 GROVE GHC130",
"manufacturer": "GROVE",
"category": "Telescopic Boom Crawler Cranes",
"price": 725000,
"currency": "USD",
"hours": 9930,
"year": 2015,
"location": "Ottsville, Pennsylvania",
"seller": "PKF-MARK III INC",
"phone": "+17243827465",
"url": "https://www.machinerytrader.com/listing/for-sale/258197815/2015-grove-ghc130",
"scraped_at": "2026-09-18T14:32:07Z"
}

💰 Pricing

Pay-Per-Event — you pay only when these events fire:

EventUSDWhat it is
actor-start$0.20One-off warm-up charge per run
result-scraped$0.004Charged once per listing row pushed to the dataset

Example: 1 000 results at the rates above ≈ $4.20. No subscription, no minimum, no card to start — Apify gives every new account free trial credit.

🚧 Limitations

Search cards carry the fields above but not full detail-page specs (photo galleries, financing calculators, extended spec sheets) — that's out of scope for v1. There is no category-facet filter in this version; only keywords and manufacturer are supported. "Call for Price" listings return price: null by design, and non-metered equipment returns hours: null.

❓ FAQ

Do I need a MachineryTrader account or API key?

No. MachineryTrader publishes no public API. This Actor scrapes the public search-results pages.

Can I filter by equipment category?

Not in this version — see Limitations. Use keywords (e.g. "crane", "dozer") to narrow results instead.

Why did my run return fewer rows than maxItems?

Either the search ran out of matching listings before hitting your cap, or a page hit a rate limit and the run reported a partial result rather than failing outright — check the run's status message.

What currency are prices in?

Whichever currency the listing publishes — almost always USD for MachineryTrader.

💬 Your feedback

Spotted a bug, hit a weird edge case, or need a new field? Open an issue on the Actor's Issues tab on Apify Console — we ship fixes weekly and we read every report.