# Scrape storage auctions by keyword

**Use case:** 

Search StorageTreasures lot titles/contents by keyword and export matches with bid, size, location. CSV/JSON ready.

## Input

```json
{
  "searchType": "keyword",
  "states": [
    "tx"
  ],
  "radiusMiles": 50,
  "keyword": "tools",
  "status": "active",
  "fetchDetails": true,
  "maxLots": 25,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Lot",
    "format": "string"
  },
  "current_bid": {
    "label": "Bid ($)",
    "format": "number"
  },
  "total_bids": {
    "label": "Bids",
    "format": "integer"
  },
  "size": {
    "label": "Size",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "time_left_seconds": {
    "label": "Time left (s)",
    "format": "integer"
  },
  "end_date": {
    "label": "Ends",
    "format": "string"
  },
  "status_slug": {
    "label": "Status",
    "format": "string"
  },
  "facility_name": {
    "label": "Facility",
    "format": "string"
  },
  "images": {
    "label": "Photo",
    "format": "array"
  },
  "lot_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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