Public official records, joined. Nothing scraped, nothing bought. This page is the contract: if the method here isn't what you get, you don't pay.
| Layer | Source | Records |
|---|---|---|
| Tax delinquency | County Treasurer pre-sale lists (free XLSX) | 8,373 (Denver 2025) |
| Parcel spine | County Assessor open-data services (ArcGIS REST) | 571,667 across Zone A (Denver / Jefferson / Boulder) |
| Sales / deeds | Denver Assessor sales & transfers layer + county recorder bulk data | 309,548 recorded Denver transfers |
| Water rights (premium flag) | Colorado DWR well-permit registry API | 76,639 wells, 44,555 active |
depth_years = sale_year - first_delinquent_tax_year (min 1)
equity_ratio = (assessed_value - total_owed) / assessed_value
score = 10 * depth_years * (equity_ratio > 0 ? equity_ratio : 0)
+ 90 * (equity_ratio >= 0.9 ? 1 : 0) # deep-equity bonus
flags = owner_is_entity, tax_sale_indicator, partially_paid (published columns)Scores are computed once per county roll and never edited afterward — the same freeze rule used on the public prediction ledger.
The ARV model behind our value columns was backtested on 57,985 real recorded sales (New York City (geography-agnostic model; CO/VA re-tune in progress)): 7.1% median absolute error, 71.5% of estimates inside the ±10% band. Zone A re-tune on Colorado sold-deed data is in progress and the numbers on this page update when it lands.