data·vault_
← Catalog

Fair market rent calculator: the math, the examples, and a query that does the lookup

FY2026 edition, published 2026-09-10. Data source: HUD, public domain. Data Vault is not affiliated with HUD. This page documents the data; it is not housing or legal advice.

There is no official FMR calculator, and that is fine

Search for a fair market rent calculator and you will not find one from HUD. There is a reason: the FMR is not something you compute from inputs you have. HUD estimates each year's FMR from American Community Survey microdata, takes the 40th percentile gross rent for standard-quality units, applies bedroom-size and regional adjustments, and publishes the result on huduser.gov. The published files are the calculator output. How the estimate is defined: HUD fair market rent data, explained.

What people actually want when they search for a calculator comes down to two jobs. One: get the published FMR for an area, fast. Two: turn that FMR into the derived numbers the voucher program uses, mainly payment standards at 90% and 110%. Both are doable with plain arithmetic and the right row of data. This page shows the math on real FY2026 rows, then the lookup.

The FMR math: payment standards, worked on real rows

Under the voucher program, a public housing agency sets its payment standard between 90% and 110% of the FMR for the area. Two multiplications per row:

payment standard low  = FMR × 0.90
payment standard high = FMR × 1.10

Worked on three FY2026 2-bedroom FMRs from the HUD FMR pack, monthly US dollars:

AreaFMR 2BR90% (low)110% (high)
Houston-The Woodlands-Sugar Land, TX (ZIP 77002)2,3602,1242,596
Phoenix-Mesa-Chandler, AZ (ZIP 85001)1,8401,6562,024
Chicago-Joliet-Naperville, IL (ZIP 60601)2,6702,4032,937

One caution the math hides: the FMR is a gross rent, shelter rent plus utilities. Comparing it against an asking rent that excludes utilities understates what the voucher covers. Rent reasonableness screening across a portfolio works the same way, one multiplication per row, and ZIP-level variation inside a metro is the subject of SAFMR vs FMR, explained. What the agency does with the two ends of that range, and a six-area band table, is the subject of HUD payment standard, explained.

What the lookup returns: six ZIP rows, verbatim

However you run the lookup, the result is a row like these, straight from the FY2026 ZIP file. Five bedroom sizes per ZIP, monthly dollars as HUD published them:

ziparea_namefmr_0brfmr_1brfmr_2brfmr_3brfmr_4br
77002Houston-The Woodlands-Sugar Land, TX HUD Metro FMR Area1,9201,9802,3603,1703,960
85001Phoenix-Mesa-Chandler, AZ MSA1,4601,5801,8402,4502,720
60601Chicago-Joliet-Naperville, IL HUD Metro FMR Area2,2202,3702,6703,4403,980
90001Los Angeles-Long Beach-Glendale, CA HUD Metro FMR Area1,5901,7802,2202,8103,130
33101Miami-Miami Beach-Kendall, FL HUD Metro FMR Area1,8302,0002,4403,1303,620
10001New York, NY HUD Metro FMR Area3,8003,9904,3705,4705,950

The full file covers 51,895 ZIP codes. The free sample shows the schema on 22 rows before you take anything bigger.

The calculator as a query: any ZIP over MCP

For a handful of ZIPs, the math above plus a search through the file is enough. For anything repeated, a lookup beats a form: the dataset-mcp server queries the full 51,895-row file and answers like a calculator over an API. One ZIP, FY2026:

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

That returns the Houston row from the table above. From Claude Desktop or any MCP client, a follow-up like "now the 90 to 110% band for that 2BR" gets computed from the returned row in the same conversation. Bulk variants work too: one where clause per metro, or a state-wide pull with { "column": "state", "op": "=", "value": "TX" }, which matched 3,247 rows in the Texas test. Setup lives on the For agents page, and HUD FMR by ZIP code covers the single-ZIP flow in more depth.

What an FMR calculator cannot do

Three limits, stated plainly. First, nobody outside HUD can recompute the official FMR from scratch: it needs ACS microdata and HUD's estimation pipeline, so any tool claiming to calculate a new FMR is producing something other than the published number. Second, an FMR is not the market rent of your specific unit; it is a 40th percentile benchmark for the area, and the lookup guide covers what it does and does not answer for. Third, the numbers refresh every fiscal year, so a FY2025 row is stale for FY2026 paperwork. An average over your own rent listings is still a useful separate check on a specific deal, just not a substitute for the published figure.

FMR calculator questions

Is there an official fair market rent calculator?
No. HUD does not publish an FMR calculator; the annual FMR files on huduser.gov are the finished output of HUD's own estimation from American Community Survey data. What people call an FMR calculator in practice is one of two things: the arithmetic that derives numbers from a published FMR, such as payment standards at 90% and 110% of the FMR, or a lookup that returns the published FMR for an area. This page shows both, and the dataset-mcp server answers the lookup over MCP.
How do I calculate payment standards from an FMR?
Multiply. Public housing agencies set payment standards between 90% and 110% of the FMR, so the low end is the FMR times 0.90 and the high end is the FMR times 1.10. For the Houston metro 2-bedroom FY2026 FMR of 2,360 dollars, the range is 2,124 to 2,596 dollars. The FMR itself already includes utilities, since it is a gross rent estimate.
Can I calculate an FMR myself from rent listings?
Not the official number. HUD computes each FMR from American Community Survey microdata as the 40th percentile gross rent, shelter rent plus utilities, with its own adjustments and update rules. An average over your own rent listings is a different measure: different data, different percentile, different treatment of utilities. If you need the number agencies use, take the published FMR for the area; your own listing analysis is better treated as a separate market check alongside it.

Get the data

Start with the free 22-row sample to check the schema, then take the full pack: all three CSVs (51,895 ZIP rows, 3,229 county rollups, 52 state 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.