# Auction.com Houston Foreclosures Scraper

**Use case:** 

Scrape Houston foreclosure and bank-owned auction listings with address, beds, baths, opening bid, and auction dates. Export to JSON or CSV.

## Input

```json
{
  "search_term": "Houston",
  "maxItems": 5,
  "sale_types": [
    "bank-owned",
    "foreclosures",
    "private-seller"
  ],
  "prop_types": [
    "single-family",
    "multi-family",
    "condos-townhouses",
    "land"
  ],
  "buying_types": [
    "online",
    "in_person",
    "remote_bid",
    "offer"
  ],
  "enrichOutput": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "primary_photo_url": {
    "label": "Primary Photo",
    "format": "image"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "country_primary_subdivision": {
    "label": "State/Province",
    "format": "text"
  },
  "country_secondary_subdivision": {
    "label": "County/Region",
    "format": "text"
  },
  "municipality": {
    "label": "City",
    "format": "text"
  },
  "postal_code": {
    "label": "Postal Code",
    "format": "text"
  },
  "street_description": {
    "label": "Street Address",
    "format": "text"
  },
  "beds": {
    "label": "Bedrooms",
    "format": "number"
  },
  "baths": {
    "label": "Bathrooms",
    "format": "number"
  },
  "sqft": {
    "label": "Square Footage",
    "format": "number"
  },
  "lot_sqft": {
    "label": "Lot Size (acres)",
    "format": "number"
  },
  "year_built": {
    "label": "Year Built",
    "format": "number"
  },
  "property_type": {
    "label": "Property Type",
    "format": "text"
  },
  "property_type_group": {
    "label": "Property Type Group",
    "format": "text"
  },
  "opening_bid": {
    "label": "Opening Bid ($)",
    "format": "currency"
  },
  "starting_bid_amount": {
    "label": "Starting Bid Amount ($)",
    "format": "currency"
  },
  "auction_start_date": {
    "label": "Auction Start Date",
    "format": "datetime"
  },
  "auction_end_date": {
    "label": "Auction End Date",
    "format": "datetime"
  },
  "saleType": {
    "label": "Sale Type",
    "format": "text"
  },
  "auctionDate": {
    "label": "Auction Date",
    "format": "date"
  },
  "auctionTime": {
    "label": "Auction Time",
    "format": "time"
  },
  "auctionLocation": {
    "label": "Auction Location",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "buyer_premium_available": {
    "label": "Buyer Premium Available",
    "format": "boolean"
  },
  "interior_access_allowed": {
    "label": "Interior Access Allowed",
    "format": "boolean"
  },
  "occupancy_status": {
    "label": "Occupancy Status",
    "format": "text"
  },
  "is_first_look_enabled": {
    "label": "First Look Enabled",
    "format": "boolean"
  },
  "is_direct_offer_enabled": {
    "label": "Direct Offer Enabled",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Auction.com Property Scraper](https://apify.com/parseforge/auction-com-property-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/auction-com-property-scraper) to learn more, explore other use cases, and run it yourself.