# Scrape Municibid dump truck auctions

**Use case:** 

Export live government surplus dump truck lots: title, current bid, total bids, seller agency, state, end time, URL. CSV/JSON.

## Input

```json
{
  "searchType": "keyword",
  "keyword": "dump truck",
  "radiusMiles": 100,
  "statusFilter": "current",
  "sortBy": "default",
  "fetchDetails": true,
  "maxLots": 25,
  "monitorMode": false,
  "alertOnNewLot": true,
  "alertOnBidChange": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Lot",
    "format": "string"
  },
  "current_price": {
    "label": "Bid ($)",
    "format": "number"
  },
  "total_bids": {
    "label": "Bids",
    "format": "integer"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "seller": {
    "label": "Seller / agency",
    "format": "string"
  },
  "end_time": {
    "label": "Ends",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "thumbnail": {
    "label": "Photo",
    "format": "string"
  },
  "lot_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Municibid Scraper — Government Surplus Auctions & Alerts](https://apify.com/scrapersdelight/municibid-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/municibid-scraper) to learn more, explore other use cases, and run it yourself.