# Auction.com Scraper — Foreclosure & Bank-Owned Homes (`scrapersdelight/auction-com-scraper`) Actor

Scrape US foreclosure & bank-owned (REO) real-estate auctions from auction.com: address, city/state/zip/county, beds/baths/sqft, property type, occupancy, estimated value, starting & current bid, reserve status, bid count and auction dates. Nationwide or by state, no login.

- **URL**: https://apify.com/scrapersdelight/auction-com-scraper.md
- **Developed by:** [Scrapers Delight](https://apify.com/scrapersdelight) (community)
- **Categories:** Automation, Lead generation, Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 per auction property returneds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 🏚️ Auction.com Scraper — Foreclosure & Bank-Owned Homes

**Scrape live US real-estate auctions from auction.com: foreclosure and bank-owned (REO) properties with full address, beds/baths/sqft, property type, estimated value, starting & current bid, reserve status and auction dates. Scan the whole country or pick states. No login, no API key.**

> 🕒 Updated: 2026-07-11 · 🇺🇸 ~15,000 active US auctions · 🏦 Foreclosure + bank-owned (REO) · 💰 Starting & live bid, reserve status, auction dates · 🚫 No login

Auction.com is the largest US foreclosure and bank-owned real-estate auction marketplace. **This actor turns its live inventory into a clean, structured dataset** — every active property with the address, physical details, valuation and the auction economics investors actually price a deal on. Point it at a state (or leave it blank for the whole country) and export to JSON, CSV, Excel or Google Sheets, or pull it via API.

Built for **real-estate investors, wholesalers, house flippers, iBuyers and hard-money lenders** who need the full auction pipeline in a spreadsheet, refreshed on a schedule.

---

### What it does

- 🏦 **Foreclosure & bank-owned (REO) inventory** — every active listing on auction.com, tagged by `property_type` (e.g. `BANK_OWNED`) and `is_foreclosure` (trustee sale) so you can split REO from foreclosure.
- 🏠 **Full property core** — address, city, state, county, ZIP, `beds`, `baths`, `sqft`, `lot_size`, `year_built`, structure type and occupancy status.
- 💰 **The auction economics** — `estimated_value`, `starting_bid`, live `current_bid`, `bid_count`, `reserve_status`, `auction_start`, `auction_end` and online/live flag.
- 🗺️ **Nationwide or by state** — leave **States** empty to pull every active US auction (~15k), or pass `["TX","FL","CA"]`. You can also paste auction.com search URLs.
- 🔗 **Direct listing URL + photo** on every row.
- ⚡ **Fast & reliable** — reads auction.com's own structured data feed (not fragile HTML), so runs come back complete, not blocked.

### 📊 Output — one flat record per property

| Field | Type | Example |
|---|---|---|
| 🏠 `address` | text | `3111 Kiowa, San Antonio, TX 78211, Bexar County` |
| 🏙️ `city` / `state` / `zip` | text | `San Antonio` / `TX` / `78211` |
| 🏦 `property_type` | text | `BANK_OWNED` |
| 🔨 `is_foreclosure` | bool | `false` |
| 🛏️ `beds` / 🛁 `baths` / 📐 `sqft` | number | `2` / `1` / `748` |
| 💵 `estimated_value` | number | `60000` |
| 🟢 `starting_bid` | number | `1` |
| 📈 `current_bid` / `bid_count` | number | `null` / `0` |
| 🔒 `reserve_status` | text | `RESERVE_NOT_MET` |
| 📅 `auction_start` / `auction_end` | date | `2026-07-13T12:00:00Z` |
| 🔗 `url` | link | `https://www.auction.com/details/3111-kiowa-st-san-antonio-tx-2118366` |

Plus `listing_id`, `street`, `county`, `product_type`, `occupancy_status`, `structure_type`, `lot_size`, `year_built`, `is_online`, `auction_status`, `listing_status`, `is_hot`, `financing_available`, `buyer_premium_available`, `event_code`, `photo_url`, `photos_count`, `scraped_at`.

<details><summary>🏠 Sample record</summary>

```json
{
  "listing_id": "2118366",
  "url": "https://www.auction.com/details/3111-kiowa-st-san-antonio-tx-2118366",
  "address": "3111 Kiowa, San Antonio, TX 78211, Bexar County",
  "city": "San Antonio", "state": "TX", "county": "BEXAR", "zip": "78211",
  "property_type": "BANK_OWNED", "product_type": "REO", "is_foreclosure": false,
  "occupancy_status": "VACANT", "structure_type": "SINGLE_FAMILY",
  "beds": 2, "baths": 1, "sqft": 748, "lot_size": 0.16, "year_built": 1960,
  "estimated_value": 60000,
  "starting_bid": 1, "current_bid": null, "bid_count": 0, "reserve_status": "RESERVE_NOT_MET",
  "auction_start": "2026-07-13T12:00:00Z", "auction_end": "2026-07-15T15:05:30Z",
  "is_online": true, "auction_status": "PENDING", "listing_status": "SALE_PENDING_CLEARED",
  "photo_url": "https://adc-tenbox-prod.imgix.net/resi/propertyImages/1451454/1451454_extf_1.v1.jpeg",
  "photos_count": 28,
  "scraped_at": "2026-07-11T00:00:00.000Z"
}
````

</details>

***

### Input

| Field | What it does |
|---|---|
| **States** | Two-letter US state codes, e.g. `["TX","FL"]`. Leave empty to scan the whole country. |
| **Start URLs** | Optional. auction.com search URLs like `https://www.auction.com/residential/CA` (state auto-detected). |
| **Sort order** | Auction date (soonest first), Newest listed, or Estimated value. |
| **Max results** | Cap per run. `0` = pull everything (up to a safety cap). |
| **Proxy** | Default Apify Proxy is fine — the data feed is not IP-blocked. |

### Typical uses

- 📋 Build a **statewide foreclosure / REO pipeline** refreshed daily.
- 🎯 Filter for **vacant, low-est-value single-family** homes under a bid threshold.
- 🏷️ Feed auction inventory into a **CRM, comps model or acquisition dashboard**.

***

*Public listing data. You are responsible for complying with auction.com's Terms of Service and applicable laws. Not affiliated with Auction.com, LLC.*

# Actor input Schema

## `states` (type: `array`):

Two-letter US state codes to scan for active auctions, e.g. \["TX", "FL", "CA"]. Every active foreclosure / bank-owned property listed on auction.com in each state is returned. Leave EMPTY to scan the whole country (all US active auctions).

## `startUrls` (type: `array`):

Optional. Paste auction.com search URLs, e.g. https://www.auction.com/residential/CA . The state is auto-detected from each URL and scanned. Use this or the States field.

## `sort` (type: `string`):

Order results by soonest auction date, most recently listed, or estimated value.

## `maxResults` (type: `integer`):

Cap on the number of properties returned this run (cost/speed guard). Default 100; set 0 to pull every matching property (up to a safety cap).

## `proxyConfiguration` (type: `object`):

Proxy settings. Auction.com's data API is not IP-blocked, so the default Apify Proxy is fine.

## Actor input object example

```json
{
  "states": [
    "TX"
  ],
  "sort": "auction_date",
  "maxResults": 20,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `records` (type: `string`):

The dataset of scraped auction.com properties (one item per property).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "states": [
        "TX"
    ],
    "sort": "auction_date",
    "maxResults": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/auction-com-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "states": ["TX"],
    "sort": "auction_date",
    "maxResults": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("scrapersdelight/auction-com-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "states": [
    "TX"
  ],
  "sort": "auction_date",
  "maxResults": 20
}' |
apify call scrapersdelight/auction-com-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapersdelight/auction-com-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Auction.com Scraper — Foreclosure & Bank-Owned Homes",
        "description": "Scrape US foreclosure & bank-owned (REO) real-estate auctions from auction.com: address, city/state/zip/county, beds/baths/sqft, property type, occupancy, estimated value, starting & current bid, reserve status, bid count and auction dates. Nationwide or by state, no login.",
        "version": "0.1",
        "x-build-id": "zxtYG4ToUMlG1DVX5"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapersdelight~auction-com-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapersdelight-auction-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapersdelight~auction-com-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapersdelight-auction-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapersdelight~auction-com-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapersdelight-auction-com-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "states": {
                        "title": "US states",
                        "type": "array",
                        "description": "Two-letter US state codes to scan for active auctions, e.g. [\"TX\", \"FL\", \"CA\"]. Every active foreclosure / bank-owned property listed on auction.com in each state is returned. Leave EMPTY to scan the whole country (all US active auctions).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "Start URLs (auction.com search pages)",
                        "type": "array",
                        "description": "Optional. Paste auction.com search URLs, e.g. https://www.auction.com/residential/CA . The state is auto-detected from each URL and scanned. Use this or the States field.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sort": {
                        "title": "Sort order",
                        "enum": [
                            "auction_date",
                            "newest",
                            "valuation_estimate"
                        ],
                        "type": "string",
                        "description": "Order results by soonest auction date, most recently listed, or estimated value.",
                        "default": "auction_date"
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap on the number of properties returned this run (cost/speed guard). Default 100; set 0 to pull every matching property (up to a safety cap).",
                        "default": 100
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy settings. Auction.com's data API is not IP-blocked, so the default Apify Proxy is fine.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
