IronPlanet Equipment Auction Scraper avatar

IronPlanet Equipment Auction Scraper

Pricing

from $50.00 / 1,000 ironplanet listing returneds

Go to Apify Store
IronPlanet Equipment Auction Scraper

IronPlanet Equipment Auction Scraper

Scrape public IronPlanet equipment and auction listings for sourcing, inventory monitoring, resale research, and agent workflows. Returns listing IDs, URLs, titles, prices, auction dates, equipment specs, locations, sellers, images, timestamps, and run summaries. No login or bidding.

Pricing

from $50.00 / 1,000 ironplanet listing returneds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

11 days ago

Last modified

Categories

Share

Scrapes publicly available IronPlanet category, auction, search, and item pages into structured equipment listing records for sourcing, inventory monitoring, and market research.

Example input:

{"startUrls":[{"url":"https://www.ironplanet.com/jsp/s/category.ips"}],"maxResults":25}

Each dataset row includes listing ID and URL, title, category, displayed price, auction date, year, make, model, hours, location, seller, images, source URL, and scrape timestamp. A SUMMARY key-value record reports counts and warnings.

Pricing

This Actor uses pay-per-event pricing at $0.05 per unique listing returned. A result event is charged only after the schema-valid listing has been written to the dataset. With maxResults: 25, the maximum result-event charge is $1.25, excluding Apify platform and optional Residential Proxy usage. Empty, invalid, and fully blocked runs do not charge listing-result events.

The actor uses bounded browser navigation, optional Apify Residential Proxy, deduplication, pre-write validation, and honest challenge/error reporting. It does not log in, bid, access watchlists, or perform account actions. IronPlanet markup and automated-access policies may change; confirm compliance with IronPlanet terms and applicable law.

What data does IronPlanet Equipment Auction Scraper return?

FieldTypeDescription
listingIdstringListing ID
listingUrlstringListing URL
titlestring or nullTitle
categorystring or nullCategory
auctionDatestring or nullAuction Date
pricenumber or nullCurrent Price
priceDisplaystring or nullDisplayed Price
yearinteger or nullYear
makestring or nullMake
modelstring or nullModel
hoursnumber or nullHours
locationstring or nullLocation
sellerstring or nullSeller
imageUrlsarrayImages
sourceUrlstringSource URL
scrapedAtstringScraped At

Use cases

  • Schedule repeatable collection and export results to downstream workflows.
  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Input

FieldTypeDescription
startUrlsarrayUse this when scraping public IronPlanet category, auction, search, or item pages. Provide URL objects such as https://www.ironplanet.com/jsp/s/auction.ips?fp=D&l2=USA; do not use login, bidding, or account URLs.
maxResultsintegerMaximum unique public listings to return.
maxRequestRetriesintegerRetries for transient navigation failures.
useResidentialProxybooleanUse Apify Residential Proxy for public pages that challenge datacenter traffic; proxy usage is billed separately.

Output example

{
"listingId": "Example Listing ID",
"listingUrl": "Example Listing URL",
"title": "Example Title",
"category": "Example Category",
"auctionDate": "Example Auction Date",
"price": 1,
"priceDisplay": "Example Displayed Price",
"year": 1,
"make": "Example Make",
"model": "Example Model",
"hours": 1,
"location": "Example Location"
}

The exact fields depend on the selected input and what the public source exposes. Use the dataset schema as the machine-readable contract and retain source URLs for verification.

Run IronPlanet Equipment Auction 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/iron-planet-scraper').call({
"startUrls": [
{
"url": "https://www.ironplanet.com/jsp/s/auction.ips?fp=D&l2=USA&msg=0&sm=0&sort=ad%20asc"
}
],
"maxResults": 25,
"maxRequestRetries": 2,
"useResidentialProxy": true
});
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.

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 IronPlanet Equipment Auction 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/iron-planet-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.