# Scrape Equip-Bid auctions in Iowa

**Use case:** 

Pull all Iowa (IA) Equip-Bid auctions with seller, city, item count, closing time and URL. Export-ready CSV/JSON.

## Input

```json
{
  "searchType": "state",
  "states": [
    "ia"
  ],
  "radiusMiles": 100,
  "sortBy": "closing",
  "scrapeItems": false,
  "maxAuctions": 20,
  "monitorMode": false,
  "alertOnNewLot": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Auction",
    "format": "string"
  },
  "affiliate": {
    "label": "Seller",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "item_count": {
    "label": "Items",
    "format": "integer"
  },
  "closing_time": {
    "label": "Closes",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "auction_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Equip-Bid Auction Scraper — Lots, Bids & New-Auction Alerts](https://apify.com/scrapersdelight/equip-bid-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/equip-bid-scraper) to learn more, explore other use cases, and run it yourself.