# Scrape AuctionNinja auctions in Florida

**Use case:** 

Export Florida (FL) auction lots: bid, time left, seller and location to CSV/JSON for resale and arbitrage.

## Input

```json
{
  "resultType": "lots",
  "state": "FL",
  "radiusMiles": 100,
  "saleType": "Online",
  "maxLots": 25,
  "maxSales": 0,
  "fetchBidCounts": false,
  "fetchSaleDetails": false,
  "monitorMode": false,
  "alertOnNewLot": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Lot",
    "format": "string"
  },
  "current_bid": {
    "label": "Bid ($)",
    "format": "number"
  },
  "time_left_text": {
    "label": "Time left",
    "format": "string"
  },
  "lot_number": {
    "label": "Lot #",
    "format": "string"
  },
  "sale_title": {
    "label": "Sale",
    "format": "string"
  },
  "seller_company": {
    "label": "Seller",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "sale_close_text": {
    "label": "Closes",
    "format": "string"
  },
  "image": {
    "label": "Photo",
    "format": "string"
  },
  "lot_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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