Source: Jackson County, MO Tax Records Simulated Data — Real scraping documentation below table
Total Properties
--
Total Delinquent
--
Avg Delinquent
--
Tax Sale Eligible
--
Avg Assessed Value
--
Zip Codes
--
Search
Property Type
Zip Code
Delinquent Amount
to
Years Delinquent
to
Address Owner Delinquent Years Type Assessed Market Value Zip Tax Sale

Live Scraping: What's Needed

This module uses simulated data based on real Jackson County patterns. To enable live scraping:

  1. Jackson County Tax Recordshttps://taxes.jacksongov.org provides searchable tax records. Scraping would use Puppeteer/Playwright to paginate through delinquent accounts.
  2. Jackson County Assessorhttps://assessment.jacksongov.org has property details (beds, baths, sq ft, year built, assessed values).
  3. Annual Tax Sale List — Jackson County publishes a PDF/CSV of properties heading to tax sale each year. This is the highest-signal dataset.
  4. Approach — Scheduled scraper (daily/weekly cron) that: fetches delinquent property list → cross-references assessor data → upserts into tax_delinquent_properties table → marks stale records.
  5. Rate Limiting — County sites often have bot detection. Use 2-3 second delays between requests, rotate user agents, and cache responses to avoid hammering their servers.

The data model and UI are production-ready. Swap in real scraping and the rest works as-is.

Source: KCMO Open Data Portal (data.kcmo.org) — Socrata API Vacant Parcels (gseg-eqfy) + Land Bank (2ebw-sp7f) Syncing on boot...
Total Vacant
--
Vacant Parcels
--
Land Bank
--
⚡ Multi-Distressed
--
Vacant + Tax Delinquent
Neighborhoods
--
Search
Vacancy Type
Neighborhood
Zip Code
 
Toggle map to visualize property locations
Address Type Neighborhood Zip Lot Size Status Distressed

Data Sources

  • Vacant Parcelsdata.kcmo.org/d/gseg-eqfy — Parcels with no structure >150 sq ft per KC Water impervious surface data. Updated regularly based on permitting.
  • Land Bank Propertiesdata.kcmo.org/d/2ebw-sp7f — Properties acquired by KC Land Bank & Homesteading Authority. Available for purchase/redevelopment.
  • Multi-Distressed Flag — Properties that appear in both this dataset and the Tax Delinquent list. Highest priority leads — vacant AND financially distressed.
  • Sync Schedule — Syncs from KCMO Open Data API at boot and daily at 3am. Manual sync via "Sync Data" button.
Source: Jackson County Assessor / GIS Records Simulated Data — Cross-referenced with tax delinquent parcel records
Total Records
--
Absentee Owners
--
Long-Term Holds (10yr+)
--
High Equity
--
Avg Years Owned
--
Search
Property Type
Equity Level
Zip Code
Owner State
Address Owner Name Mailing (City, State) Years Owned Absentee Hold Assessed Value Equity Zip Type

Loading...

How This Works Absentee Owner: Owner mailing address city/state differs from property address — often an investor or out-of-state landlord more likely to sell at a discount.   Long-Term Hold: Deed recorded 10+ years ago — owner may have significant equity and motivation to cash out.   Equity Indicator: Based on assessed value; high equity owners respond better to cash offers. ⚡ Data shown is cross-referenced from Jackson County GIS parcel records with realistic modeling where deed dates are unavailable via public API.
Source: Jackson County 16th Circuit Court / County Recorder Simulated Data — Modeled from real KC foreclosure patterns. Live court API integration documented below.
Total Filings
--
Total Default
--
Urgent (<14 days)
--
Upcoming Auctions
--
Avg Default Amount
--
Zip Codes
--
Search
Filing Type
Urgency
Zip Code
Default Amount
to
Address Owner Filing Filed Default Auction Countdown Assessed Zip

Loading...

Live Data: Court Record Integration

This module uses simulated data modeled from real Jackson County foreclosure patterns. To enable live court data:

  1. Missouri CaseNetcourts.mo.gov/casenet has searchable civil case records including lis pendens and foreclosure filings for the 16th Judicial Circuit (Jackson County).
  2. Jackson County Recorderrecorder.jacksongov.org records lis pendens filings, trustee sale notices, and other real property documents.
  3. Bid4Assetsbid4assets.com/jackson hosts Jackson County online tax and foreclosure auctions with upcoming sale dates.
  4. Missouri Sunshine Law — Request bulk lis pendens/foreclosure filing data from the Jackson County Recorder's office. Turnaround: ~10 business days.
  5. Approach — Weekly scraper: query CaseNet for new foreclosure case types in 16th Circuit → cross-reference county recorder → enrich with GIS assessor data → upsert into pre_foreclosure_properties table.

The data model and UI are production-ready. Swap in real court data and everything works as-is.