CoolFace
Datasetpublic

zalizedata/us-residential-properties-sale-events-dataset

US Residential Properties & Sale Events (Government Records) 7M+ property and sale-event records from official county/city government sources — parcels, assessments and transaction histories, with city-level slices for Philadelphia and New York City. Part of the DataForge Open Data program — full production packages, free for academic and personal use. Canonical dataset page: https://data.zalize.com/datasets/us-residential-properties-sale-events-dataset Formats & how… See the full description on the dataset page: https://huggingface.co/datasets/zalizedata/us-residential-properties-sale-events-dataset.

sourceHugging Facecc-by-nc-4.0updated 2mo agoView on Hugging Face
0likes95downloads
Dataset Card

US Residential Properties & Sale Events (Government Records)

7M+ property and sale-event records from official county/city government sources — parcels, assessments and transaction histories, with city-level slices for Philadelphia and New York City.

Part of the DataForge Open Data program — full production packages, free for academic and personal use. Canonical dataset page: [https://data.zalize.com/datasets/us-residential-properties-sale-events-dataset](https://data.zalize.com/datasets/us-residential-properties-sale-events-dataset)

Formats & how to load

Native parquet (snappy) shards live under data/<table>/ and are rendered directly by the Dataset Viewer above. Original release zips (with CSV/JSONL copies, data dictionary, datasheet and QA report) are archived under archive/ and on <https://dl.zalize.com/open-data>.

Table (config)RowsParquet shardsSize
properties3,306,4201190.7 MB
sale_events3,703,0941153.7 MB
python
# pandas
import pandas as pd
df = pd.read_parquet("hf://datasets/zalizedata/us-residential-properties-sale-events-dataset/data/properties/properties-00000-of-00001.parquet")

# polars (lazy, all shards)
import polars as pl
lf = pl.scan_parquet("hf://datasets/zalizedata/us-residential-properties-sale-events-dataset/data/properties/*.parquet")

# duckdb
import duckdb
rel = duckdb.sql("SELECT * FROM 'hf://datasets/zalizedata/us-residential-properties-sale-events-dataset/data/properties/*.parquet' LIMIT 10")

Archived zips: realestate-tier1-L-2026-08-02.zip, realestate-tier1-M-2026-08-02.zip, realestate-tier1-S-2026-08-02.zip

Packages in this repo

PackageTierRowsSizeSHA-256
realestate-tier1-S-2026-08-02.zipS1,327,964109.5 MB5da022313d1afcbcab9b3d4e161c0412016283d1ffab127ddfc70f34b21aea17
realestate-tier1-M-2026-08-02.zipM1,423,038128.8 MB9f6280106f20b389850d16e63be8b6c70605de1b562d1cbedb637b710b30ce76
realestate-tier1-L-2026-08-02.zipL7,009,514512.5 MB948c71304012cfae084118a269515027fda52b0577c94157f815568c751e6fa2

All files are also served from the machine-readable open-data index: <https://dl.zalize.com/open-data> (per-package URL: https://dl.zalize.com/open-data/<package_id>).

What you get

  • —S — Philadelphia: 1,327,964 property and sale-event records
  • —M — New York City: 1,423,038 records
  • —L — Full pack: 7,009,514 records across covered jurisdictions
  • —Data dictionary, datasheet and QA report included

Use cases

  • —Comps and valuation models
  • —Investment screening
  • —Urban analytics
  • —Mortgage and title research

Source & methodology

US county assessor / government property and sale-event records

Coverage, update cadence and the full field-level data dictionary are on the dataset page: https://data.zalize.com/datasets/us-residential-properties-sale-events-dataset (DATA-DICTIONARY.md and DATASHEET.md are inside each package zip).

License

CC BY-NC 4.0 (DataForge curated layer; academic/personal use, attribution + backlink required) — commercial use requires a DataForge commercial license. Upstream: US county/government property records (public records)

  • —Academic / personal use: CC BY-NC 4.0 on the DataForge curated layer — attribution and a backlink to <https://data.zalize.com> are required.
  • —Commercial use: requires a DataForge commercial license — contact us via the portal.
  • —Upstream license terms continue to apply to the underlying data.

Citation

text
DataForge (data.zalize.com) — https://data.zalize.com/datasets/us-residential-properties-sale-events-dataset

DOI (Zenodo mirror): 10.5281/zenodo.21813358 · GitHub Release mirror: https://github.com/wookat/dataforge-pipelines/releases/tag/open-data-us-residential-real-estate

Usage

python
from datasets import load_dataset

ds = load_dataset("zalizedata/us-residential-properties-sale-events-dataset", "properties", split="train")
print(ds[0])

Available configs: properties, sale_events.

Related datasets

More DataForge open datasets in Macro, Trade, Energy & Real Estate:

Full catalog (25 datasets): <https://data.zalize.com/open-data> · all HF repos: <https://huggingface.co/zalizedata>