# Florida Foreclosure & Tax Deed Auction Calendar (`sparky_source/florida-foreclosure-tax-deed-auction-calendar`) Actor

Upcoming Florida foreclosure & tax deed auctions from 25 county clerk sites: case number, parcel ID, address, judgment/opening bid, assessed value, sale date & status. Daily monitoring mode for new sales. Built for investors, wholesalers & surplus recovery.

- **URL**: https://apify.com/sparky\_source/florida-foreclosure-tax-deed-auction-calendar.md
- **Developed by:** [Jake Williamson](https://apify.com/sparky_source) (community)
- **Categories:** Lead generation, Real estate
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 auction records

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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

## Florida Foreclosure & Tax Deed Auction Calendar — Investor Leads

Get every **upcoming foreclosure auction and tax deed sale** scheduled across Florida county clerk auction sites — case number, parcel ID, property address, final judgment / opening bid, assessed value, sale date and live status — in clean JSON/CSV, ready for your CRM, spreadsheet, or deal-analysis pipeline.

This actor reads the **primary source**: the official RealForeclose / RealTaxDeed auction platforms operated for Florida's county clerks, where the sales actually happen. Not a Zillow re-scrape, not a stale lead-broker list — the same calendar the bidders see, pulled on demand.

### Who uses this

- **Cash buyers, flippers & wholesalers** — see every sale in your counties weeks ahead; sort by judgment amount vs. assessed value to spot equity spreads before the courthouse crowd.
- **Foreclosure-surplus recovery firms** — track sold auctions and case numbers feeding your surplus claims pipeline.
- **Title companies & attorneys** — monitor upcoming sales for client properties or target ZIPs.
- **Lead-gen & data teams** — schedule daily runs with `newOnly` and pipe fresh auctions into Make/Zapier/n8n via the Apify integrations.

### What you get per record

| Field | Example |
|---|---|
| `county` / `auctionType` | `broward` / `foreclosure` |
| `auctionDate` / `status` | `06/24/2026` / `Auction starts 10:00 AM` |
| `caseNumber` | `CACE-24-012345` |
| `parcelId` | `5142-01-23-4560` |
| `propertyAddress` | `1234 NW 19TH ST, FORT LAUDERDALE` |
| `assessedValue` | `412000` |
| `judgmentOrOpeningBid` | `287443.12` |
| `soldTo` / `plaintiffMaxBid` | populated on completed sales where shown |
| `sourceUrl` | deep link to the county auction page |
| `rawFields` | every label/value pair as published, untouched |

### Coverage

25 Florida counties on the standard RealAuction URL pattern, including Broward, Miami-Dade, Duval, Hillsborough, Pinellas, Polk, Lee, Brevard, Volusia, Pasco, Sarasota, Manatee, Marion, Escambia and more (full list in the input form). Counties on custom platforms can be added via the `customSites` input. Per-county failures never kill a run — they're isolated and reported in `RUN-SUMMARY`.

### Monitoring mode (the recurring workflow)

Set `newOnly: true` and schedule the actor daily. Each run returns **only auctions that weren't there yesterday** — a true new-listings feed. Wire it to Slack/email/webhooks with Apify integrations and you have an auction alert service for your buy-box counties.

### Pricing

Pay per auction record delivered. A weekly 5-county scan typically returns a few hundred records — you pay only for what comes back, no subscription, no seat license. Compare: enterprise distressed-property data services run $100–600/month for the same counties.

### Legal & sourcing

Auction calendars and sale results are **public records** published by Florida county clerks for public participation. This actor accesses only public, login-free pages, at low request rates (max 2 concurrent pages), and bypasses no access controls. Data is provided for informational purposes; verify all figures against the clerk's record before bidding. Not legal or investment advice.

### FAQ

**How fresh is the data?** Pulled live from the county auction site at run time. Schedule daily runs for a rolling fresh window.

**Does it cover canceled/postponed sales?** Yes — the `status` field carries the site's live status string for each item.

**Can you add my county/state?** Open an issue on the Issues tab — additional counties and states (GA, TX sheriff sales, NJ) are on the roadmap and prioritized by request volume.

**Why do some records lack an address?** Some clerks publish only parcel + case for certain sale types; `rawFields` always contains everything the county published. Pair with a property-appraiser parcel lookup for full detail.

# Actor input Schema

## `counties` (type: `array`):

Florida counties to scan. Supported: broward, miamidade, duval, hillsborough, pinellas, polk, lee, brevard, volusia, pasco, sarasota, manatee, marion, escambia, alachua, osceola, stlucie, charlotte, citrus, clay, okaloosa, santarosa, flagler, putnam, leon.
## `auctionType` (type: `string`):

Mortgage foreclosure auctions, tax deed auctions, or both.
## `daysAhead` (type: `integer`):

How many days into the future to scan (business days only are queried).
## `newOnly` (type: `boolean`):

Skip auction items already returned by previous runs — ideal for scheduled daily monitoring with alerts.
## `maxItems` (type: `integer`):

Hard cap on records returned (cost control).
## `proxyConfiguration` (type: `object`):

Proxy settings. Apify Proxy (automatic) recommended.
## `customSites` (type: `array`):

Additional RealAuction-platform sites: [{"county":"palmbeach","type":"foreclosure","baseUrl":"https://mypalmbeachclerk.clerkauction.com"}]
## `debugHtml` (type: `boolean`):

Store raw page HTML in the key-value store for troubleshooting selectors.

## Actor input object example

```json
{
  "counties": [
    "broward",
    "duval",
    "hillsborough",
    "pinellas",
    "polk"
  ],
  "auctionType": "both",
  "daysAhead": 14,
  "newOnly": false,
  "maxItems": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "customSites": [],
  "debugHtml": false
}
````

# 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 = {
    "counties": [
        "broward",
        "duval",
        "hillsborough",
        "pinellas",
        "polk"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("sparky_source/florida-foreclosure-tax-deed-auction-calendar").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 = {
    "counties": [
        "broward",
        "duval",
        "hillsborough",
        "pinellas",
        "polk",
    ],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("sparky_source/florida-foreclosure-tax-deed-auction-calendar").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 '{
  "counties": [
    "broward",
    "duval",
    "hillsborough",
    "pinellas",
    "polk"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call sparky_source/florida-foreclosure-tax-deed-auction-calendar --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=sparky_source/florida-foreclosure-tax-deed-auction-calendar",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Florida Foreclosure & Tax Deed Auction Calendar",
        "description": "Upcoming Florida foreclosure & tax deed auctions from 25 county clerk sites: case number, parcel ID, address, judgment/opening bid, assessed value, sale date & status. Daily monitoring mode for new sales. Built for investors, wholesalers & surplus recovery.",
        "version": "0.0",
        "x-build-id": "Rzo6WdpmN1bcxNEJZ"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/sparky_source~florida-foreclosure-tax-deed-auction-calendar/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-sparky_source-florida-foreclosure-tax-deed-auction-calendar",
                "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/sparky_source~florida-foreclosure-tax-deed-auction-calendar/runs": {
            "post": {
                "operationId": "runs-sync-sparky_source-florida-foreclosure-tax-deed-auction-calendar",
                "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/sparky_source~florida-foreclosure-tax-deed-auction-calendar/run-sync": {
            "post": {
                "operationId": "run-sync-sparky_source-florida-foreclosure-tax-deed-auction-calendar",
                "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": {
                    "counties": {
                        "title": "Counties",
                        "type": "array",
                        "description": "Florida counties to scan. Supported: broward, miamidade, duval, hillsborough, pinellas, polk, lee, brevard, volusia, pasco, sarasota, manatee, marion, escambia, alachua, osceola, stlucie, charlotte, citrus, clay, okaloosa, santarosa, flagler, putnam, leon.",
                        "default": [
                            "broward",
                            "duval",
                            "hillsborough",
                            "pinellas",
                            "polk"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "auctionType": {
                        "title": "Auction type",
                        "enum": [
                            "foreclosure",
                            "taxdeed",
                            "both"
                        ],
                        "type": "string",
                        "description": "Mortgage foreclosure auctions, tax deed auctions, or both.",
                        "default": "both"
                    },
                    "daysAhead": {
                        "title": "Days ahead",
                        "minimum": 1,
                        "maximum": 60,
                        "type": "integer",
                        "description": "How many days into the future to scan (business days only are queried).",
                        "default": 14
                    },
                    "newOnly": {
                        "title": "Only new records (monitoring mode)",
                        "type": "boolean",
                        "description": "Skip auction items already returned by previous runs — ideal for scheduled daily monitoring with alerts.",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max records",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Hard cap on records returned (cost control).",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy settings. Apify Proxy (automatic) recommended.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "customSites": {
                        "title": "Custom auction sites (advanced)",
                        "type": "array",
                        "description": "Additional RealAuction-platform sites: [{\"county\":\"palmbeach\",\"type\":\"foreclosure\",\"baseUrl\":\"https://mypalmbeachclerk.clerkauction.com\"}]",
                        "default": []
                    },
                    "debugHtml": {
                        "title": "Save debug HTML",
                        "type": "boolean",
                        "description": "Store raw page HTML in the key-value store for troubleshooting selectors.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
