File size: 1,880 Bytes
e4e72c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
license: other
tags:
  - mortgage
  - fannie-mae
  - ami
  - income-limits
  - homeready
  - county
---

# Fannie Mae 2026 County-Level AMI Data

Official 2026 Area Median Income (AMI) data from Fannie Mae for all 3,144 US counties.
Used for HomeReady® and Home Possible® income eligibility checks.

## Files

| File | Description |
|---|---|
| `fannie-ami-2026-county.json` | Key-value lookup by 5-digit county FIPS code |
| `fannie-ami-2026.jsonl` | JSONL format, one record per county |
| `fannie-ami-2026-by-state.json` | Organized by state name |

## Schema

Each record contains:
- `fips` — 5-digit county FIPS code (e.g., `"28035"`)
- `county` — County name
- `state` — State name
- `highCostArea` — Boolean, true if designated high-cost area
- `ami` — 2026 Area Median Income
- `veryLowIncome` — 50% AMI (very low-income threshold)
- `lowIncome` — 80% AMI (low-income threshold)
- `homeReadyLimit` — HomeReady® borrower income eligibility limit (= HP Borrower's Income Eligibility from Fannie Mae)
- `ami2025` — 2025 AMI for year-over-year comparison
- `amiChange` — Dollar change from 2025 to 2026
- `totalTracts` — Number of census tracts in county

## Usage

```javascript
// Fetch county AMI data
const res = await fetch(
  'https://huggingface.co/datasets/Good-News-Lending/fannie-ami-2026/resolve/main/fannie-ami-2026-county.json'
);
const amiData = await res.json();

// Look up by 5-digit FIPS
const forrestCountyMS = amiData['28035'];
// { fips: '28035', county: 'Forrest', state: 'Mississippi', ami: 79800, homeReadyLimit: 63840, ... }
```

## Source

Fannie Mae 2026 MFI/AMI County Data  
Published: 2026  
Source: [Fannie Mae AMI Lookup Tool](https://ami-lookup-tool.fanniemae.com/amilookuptool/)

## Maintained By

[Good News Lending](https://www.goodnewslending.com)  
Beau Thompson, NMLS #1615561 | Tate Thompson, NMLS #2473962