Discover and analyze lien positions from AcclaimWeb and RealTDM to detect HOA foreclosures and senior mortgage survival
Analyzes recorded liens to determine priority positions and detect critical scenarios like HOA foreclosures.
First Position Lien: Foreclosure wipes out junior liens HOA Foreclosure: Senior mortgage SURVIVES (buyer inherits it)
This is THE most critical determination in auction analysis.
\$([0-9,]+\.\d{2})(\d{1,2}/\d{1,2}/\d{4})Book (\d+) Page (\d+)Instrument# (\d+)Priority Order:
Exception: HOA foreclosure on assessment lien
Red Flags:
Action:
if (plaintiff_is_hoa AND senior_mortgage_exists):
decision = "DO_NOT_BID"
reason = "HOA foreclosure - senior mortgage survives"
{
"lien_analysis": {
"total_liens": 3,
"liens": [
{
"position": "1st",
"type": "mortgage",
"amount": 250000,
"holder": "Wells Fargo Bank",
"recording_date": "2018-03-15",
"instrument": "2018012345",
"status": "active"
},
{
"position": "2nd",
"type": "hoa_assessment",
"amount": 15000,
"holder": "Satellite Beach HOA",
"recording_date": "2023-06-01",
"status": "foreclosing"
},
{
"position": "tax",
"type": "tax_certificate",
"amount": 8500,
"holder": "Brevard County Tax Collector",
"status": "active"
}
],
"foreclosure_type": "hoa",
"senior_mortgage_survives": true,
"buyer_inherits": [
"Wells Fargo 1st mortgage ($250K)",
"Tax certificate ($8.5K)"
],
"recommendation": "DO_NOT_BID"
}
}
Search by case number: 2024-CA-001234
→ Returns: Lis pendens, mortgages, liens
→ Parse each PDF document
→ Extract amounts, dates, parties
Get parcel ID from BCPAO
Search AcclaimWeb by parcel
→ Find ALL recorded instruments on property
→ Build complete lien chain
Search tax certificates by parcel
→ Any outstanding certificates?
→ Add to lien analysis
Order liens by recording date
Apply Florida priority rules
Identify which liens survive foreclosure
Calculate satisfaction amounts
Plaintiff: Wells Fargo Bank
Lien Position: 1st mortgage
Junior Liens: 2nd mortgage ($50K), HOA lien ($5K)
→ Result: Junior liens wiped out, buyer gets clean title
→ Decision: Proceed with normal analysis
Plaintiff: Palm Bay Homeowners Association
Lien Position: Assessment lien (subordinate)
Senior Liens: 1st mortgage Wells Fargo ($300K)
→ Result: Buyer inherits $300K mortgage
→ Decision: DO_NOT_BID
Plaintiff: Brevard County Tax Collector
Lien Position: Tax lien (senior to all)
Other Liens: 1st mortgage ($200K), 2nd mortgage ($50K)
→ Result: ALL liens wiped out, clean title
→ Decision: Strong opportunity
BECA Scraper V2.0 Features:
# Stage 4: Lien Priority Analysis
lien_data = lien_discovery_skill.analyze(case_number, parcel_id)
if lien_data['senior_mortgage_survives']:
decision = "DO_NOT_BID"
max_bid = 0