data·vault_
← Catalog

FMR lookup: one at a time, or all 51,895 ZIP rows

FY2026 edition, published 2026-09-09. Data source: HUD, public domain. Data Vault is not affiliated with HUD.

How fair market rent lookup works today

Each fall HUD publishes Fair Market Rents for the coming fiscal year on huduser.gov. The site's lookup shows one area at a time: pick a state, pick the metro or county area, read the FMR table for that area. HUD also posts the source files for the year, organized around HUD area codes, with separate tables for metro-wide values and ZIP-level Small Area FMRs. How the two fit together: SAFMR vs FMR, explained.

For one or two areas, that flow works fine. A landlord checking a single market or an analyst pulling one metro is done in minutes, and the source is the authoritative one.

Where one-at-a-time lookup stops working

Bulk jobs need every area at once. Rent reasonableness checks across a portfolio spread over dozens of ZIPs. A market study ranking 2-bedroom FMRs for every county in a state. An app that needs a rent ceiling for any ZIP a user types in.

At that scale the per-area flow means thousands of manual lookups, or pulling HUD's source tables and reshaping them yourself: joining metro, county, and ZIP-level tables, mapping HUD area codes, flattening bedroom sizes into columns. Doable, but it is data janitor work that repeats every fiscal year.

FMR by ZIP code in bulk

The FY2026 FMR pack ships the same public domain numbers in a normalized shape:

Every row covers five bedroom sizes, 0BR through 4BR, in monthly dollars rounded exactly as HUD published them. A data dictionary documents every column, and the pack lists checksums so you can verify the files. Column-by-column detail lives in HUD fair market rent data, explained.

Scripts and agents can skip the download. The dataset-mcp server queries the full 51,895-row file in memory, and a single-ZIP lookup looks like this:

query_dataset(
  "hud-fmr-2026",
  {
    "where": [{ "column": "zip", "op": "=", "value": "79508" }],
    "columns": ["zip", "area_name", "fmr_0br", "fmr_1br", "fmr_2br", "fmr_3br", "fmr_4br"]
  }
)

The matching row, verifiable in the free sample:

ziparea_namefmr_0brfmr_1brfmr_2brfmr_3brfmr_4br
79508Abilene, TX MSA980990124016101930

What people use bulk FMR data for

Rent reasonableness checks. HUD's payment standards sit at 90% and 110% of the FMR, one multiplication away per row. Load the CSV once and screen a whole portfolio's asking rents against the ceiling for each ZIP in one pass. The arithmetic with worked examples lives in the FMR calculator guide.

Market research. Rank ZIPs or counties by FMR, measure the spread inside a metro where SAFMRs apply, or screen expansion markets by comparing a candidate ZIP's 2BR FMR against your current ones.

App backends. 51,895 rows is a few megabytes. Load it into SQLite, DuckDB, or memory and answer any ZIP lookup locally, with no per-request calls to anyone's site.

FMR lookup questions

What is a fair market rent (FMR)?
An estimate HUD publishes each year of the 40th percentile gross rent, shelter rent plus utilities, for standard-quality units in a local market. Housing agencies use it to set payment standards for the Housing Choice Voucher program, and analysts use it as a rent benchmark that applies the same way everywhere.
Why do neighboring ZIP codes have different FMRs?
Many metros now use Small Area FMRs (SAFMRs), which HUD sets at the ZIP-code level instead of one number for the whole metro. In those metros a 2-bedroom FMR in one ZIP can differ from the ZIP next door. ZIPs not covered by a SAFMR carry their metro's FMR.
What format does the FMR data come in?
Three CSVs: fmr-by-zip-2026.csv with 51,895 rows (one per ZIP code), fmr-by-county-2026.csv with 3,229 county rollups, and state-summary.csv with 52 rows. Every row covers five bedroom sizes, 0BR through 4BR, in monthly US dollars rounded as HUD published them. A data dictionary documents every column and the files carry source checksums.
Is this official HUD data?
The numbers come from HUD's FY2026 Fair Market Rent release on huduser.gov, which is US government data in the public domain. This pack is not an official HUD product and Data Vault is not affiliated with HUD. What we add on top of the public data: one normalized CSV per table, a data dictionary, and free query access over MCP.

Get the data

Start with the free 22-row sample to check the schema, then take the full pack when it fits. The full pack carries all three CSVs (51,895 + 3,229 + 52 rows), the data dictionary, and source checksums.

Checkout and download run through Getly. Source: US Department of Housing and Urban Development, FY2026 Fair Market Rent release, huduser.gov. US government data, public domain. Data Vault is not affiliated with HUD.