Florida Property API
Endpoints

Search Tax Delinquencies

Search Florida delinquent-tax and tax-certificate records by county, tax year, status, amount due, parcel id, owner, vendor, or certificate number.

GET /api/v1/tax-delinquencies/search

Search delinquent-property-tax and tax-certificate records aggregated from county tax collectors and certificate-sale portals (LienHub / RealAuction, RealTaxLien, TaxCertSale, WFBS, PacificBlue). Filter by county, tax year, status, amount due, county parcel id, owner name, source vendor, or certificate number.

A tax certificate is a lien against the property for unpaid taxes — it is not ownership of the property. These records describe the lien/delinquency, not a transfer of title.

Authentication

curl -H "X-API-Key: fpapi_test_..." \
  "https://api.floridapropertyapi.com/v1/tax-delinquencies/search?county=polk&tax_year=2023&min_due=1000&limit=10"

Query Parameters

NameTypeRequiredDefaultDescription
countystring | string[]noCounty slug(s). Repeatable or CSV.
tax_yearintegernoTax year (e.g. 2023).
statusstring (≤40 chars)noDelinquency status (e.g. certificate_sold).
min_duenumbernoMinimum total amount due.
max_duenumbernoMaximum total amount due.
parcel_idstring (≤100 chars)noCounty-assigned parcel id.
ownerstring (≤200 chars)noOwner name (contains match).
vendorstring (≤80 chars)noSource vendor (e.g. LienHub, RealTaxLien).
certificate_numberstring (≤80 chars)noTax-certificate number.
sortenum (due_desc, due_asc, year_newest)noResult ordering.
limitinteger 1-500no25Page size.
offsetinteger ≥ 0no0Pagination offset.

Response (200)

List envelope { data: DelinquencyHit[], pagination, meta }.

{
  "data": [
    {
      "id": "txd_5b1e7c44",
      "county_slug": "polk",
      "county_parcel_id": "262813-000000-012345",
      "tax_year": 2023,
      "status": "certificate_sold",
      "delinquent_amount": 3284.17,
      "total_due": 3512.44,
      "certificate_number": "2024-04821",
      "certificate_sale_date": "2024-06-01",
      "owner_name": "DOE JANE",
      "site_address_full": "456 ORANGE AVE, LAKELAND FL 33801",
      "source_vendor": "LienHub"
    }
  ],
  "pagination": { "limit": 25, "offset": 0, "total": 1, "has_more": false },
  "meta": { "request_id": "req_1234567890abcdef12345", "dataset_status": "live" }
}

Coverage varies by county — not every county publishes a delinquency / certificate-sale feed. See Tax-Delinquency Sources for per-county coverage.

Error Responses

StatusCodeCause
400bad_requestInvalid query parameters.
401unauthorizedMissing or invalid API key.
429rate_limitedRate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page