# Scrape MaxSold Florida estate sales data

**Use case:** 

Extract MaxSold Florida estate auction lots — bid, location, close time, photo & lot URL — to CSV/JSON.

## Input

```json
{
  "keywords": "",
  "sites": [
    "maxsold"
  ],
  "maxLotsPerSite": 25,
  "perSiteTimeoutSecs": 120,
  "proxibidCategory": "jewelry-gemstones-watches",
  "maxsoldStates": [
    "florida"
  ],
  "monitorMode": false,
  "alertOnNewLot": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "site": {
    "label": "Site",
    "format": "string"
  },
  "title": {
    "label": "Lot",
    "format": "string"
  },
  "current_bid": {
    "label": "Bid",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "close_time": {
    "label": "Closes",
    "format": "string"
  },
  "image": {
    "label": "Photo",
    "format": "string"
  },
  "lot_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Multi Auction Search — Storage, Surplus & Estate Sites](https://apify.com/scrapersdelight/multi-auction-search) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/multi-auction-search) to learn more, explore other use cases, and run it yourself.