Microproduct Data GuideBeginner

HUD Fair Market Rents

County and metro Fair Market Rents for building rent-burden screens and voucher-payment comparison tools.

Report a Problem

At a Glance

Difficulty
Beginner — comfortable for a first prototype
Size
Tiny · ≤0.05 GB
Formats
JSON, Excel
Access
API or Download
API Key
Required
Provider
U.S. Department of Housing and Urban Development
Updates
Annual
Last Verified
Aug 18, 2026
Source Type
Government Source
  • Python Syntax Checked

From Source to Product Signal

Test a Product Idea in Four Steps

HUD publishes Fair Market Rents by county and metro area. Start with one state's statedata endpoint for a single fiscal year. FMR is a 40th-percentile estimate used in voucher programs, not an observed asking rent.

1

Check the Setup

  • Python 3.10 or newer
  • A notebook environment such as Jupyter or Google Colab
  • A free HUD User API token saved in the HUD_API_TOKEN environment variable
2

Access the Data

  1. 1.Register for a HUD User API token from the FMR API documentation on HUD User.
  2. 2.Save the token in the HUD_API_TOKEN environment variable.
  3. 3.Request one state's county FMRs for a single fiscal year.
Open Official Source
3

Run the Python Example

Install the packages, then run the notebook cell.

python -m pip install pandas requests

import os
import pandas as pd
import requests

response = requests.get(
    "https://www.huduser.gov/hudapi/public/fmr/statedata/CO",
    params={"year": 2025},
    headers={"Authorization": f"Bearer {os.environ['HUD_API_TOKEN']}"},
    timeout=30,
)
response.raise_for_status()
payload = response.json()["data"]
rents = pd.DataFrame(payload.get("counties", payload))
rents["retrieved_at_utc"] = pd.Timestamp.now(tz="UTC")
print(rents.head(20))
4

Test a Useful Signal

Compare Two-Bedroom FMRs across One State's Counties

Test whether county FMRs can support a bounded rent-burden screen.

  1. 01Keep county names and two-bedroom FMR values for Colorado.
  2. 02Rank counties and flag missing bedroom-size fields.
  3. 03State that FMR is not observed asking rent and that Small Area FMRs can differ inside a metro.

Dataset Details

U.S. Department of Housing and Urban Development is a government source. Last verified 2026-08-18. Temporal coverage: annual fiscal-year FMRs.

Geography

Formats

Provider

U.S. Department of Housing and Urban Development

Data Terms

U.S. Government public data / federal copyright guidance

Send Feedback