# IronPlanet Excavator Auction Scraper

**Use case:** 

Extract excavator auction listings from IronPlanet, including make, model, year, hours, current bid and location.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.ironplanet.com/jsp/s/search.ips?q=excavator"
    }
  ],
  "maxItems": 25
}
```

## Output

```json
{
  "primaryImageUrl": {
    "label": "Primary Image",
    "format": "image"
  },
  "title": {
    "label": "Equipment Title",
    "format": "text"
  },
  "url": {
    "label": "Listing URL",
    "format": "url"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "currentBid": {
    "label": "Current Bid",
    "format": "text"
  },
  "auctionType": {
    "label": "Auction Type",
    "format": "text"
  },
  "auctionEndDate": {
    "label": "Auction End Date",
    "format": "text"
  },
  "isOnlineAuction": {
    "label": "Online Auction",
    "format": "boolean"
  },
  "hasIroncladAssurance": {
    "label": "IronClad Assurance",
    "format": "boolean"
  },
  "ironcladAssurance": {
    "label": "IronClad Details",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal Code",
    "format": "text"
  },
  "region": {
    "label": "Region/State",
    "format": "text"
  },
  "countryName": {
    "label": "Country",
    "format": "text"
  },
  "engineHours": {
    "label": "Engine Hours",
    "format": "text"
  },
  "mileage": {
    "label": "Mileage",
    "format": "text"
  },
  "specifications": {
    "label": "Specifications",
    "format": "object"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "phone": {
    "label": "Contact Phone",
    "format": "text"
  },
  "email": {
    "label": "Contact Email",
    "format": "email"
  },
  "images": {
    "label": "Gallery Images",
    "format": "array"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Iron Planet Scraper](https://apify.com/parseforge/iron-planet-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/iron-planet-scraper) to learn more, explore other use cases, and run it yourself.