HUD subsidy contract expiry data for AI agents

North Dakota

HUD subsidy contract expiry data in North Dakota

22 dated North Dakota records, read from filed public sources rather than modelled, and callable by an AI agent with no key.

Short answer

Which HUD-subsidised properties have contracts approaching expiry? In North Dakota, 22 records are dated ahead of today. Every one of them is listed below in full, and they are free.

All 22 in North Dakota

That is the whole North Dakota population for this family, not a sample. The call underneath returns the same rows, up to its own fifty-row ceiling.

DatePropertyCityUnitsAmountSource
2026-10-31610 3rd Ave NWWESTERN VIEW VILLA, Beach, ND: the 515/8 NC contract expires 2026-10-31, covering 8 assisted units.Beach8hud_multifamily_arcgis
2026-11-132463 S 42nd StLinden Place Apt/ ASI Grand Forks, Grand Forks, ND: the PAC/811 contract expires 2026-11-13, covering 14 assisted units.Grand Forks1514 assisted_unitshud_multifamily_arcgis
2026-11-291115 23rd St SNORTHLAND APARTMENTS, Fargo, ND: the PAC/811 contract expires 2026-11-29, covering 17 assisted units.Fargo1817 assisted_unitshud_multifamily_arcgis
2026-11-301215 8th Ave NEASI JAMESTOWN, Jamestown, ND: the PRAC/811 contract expires 2026-11-30, covering 18 assisted units.Jamestown18hud_multifamily_arcgis
2026-12-053800 S Columbia RdCOLUMBIA PLACE, Grand Forks, ND: the PRAC/811 contract expires 2026-12-05, covering 5 assisted units.Grand Forks5hud_multifamily_arcgis
2026-12-275452 6th Ave NHARVEST LODGE, Grand Forks, ND: the PRAC/811 contract expires 2026-12-27, covering 6 assisted units.Grand Forks6hud_multifamily_arcgis
2027-01-091728 Mapleton AveSAHNISH HOUSING, Bismarck, ND: the PRAC/811 contract expires 2027-01-09, covering 8 assisted units.Bismarck98 assisted_unitshud_multifamily_arcgis
2027-01-27675 N 43rd StHARVEST HOMES, Grand Forks, ND: the PRAC/811 contract expires 2027-01-27, covering 12 assisted units.Grand Forks1312 assisted_unitshud_multifamily_arcgis
2027-02-28221 N 15th StOAKWOOD II, Oakes, ND: the Sec 8 NC contract expires 2027-02-28, covering 4 assisted units.Oakes84 assisted_unitshud_multifamily_arcgis
2027-04-13140 3rd Ave NEPRAIRIE INN, Valley City, ND: the PRAC/811 contract expires 2027-04-13, covering 14 assisted units.Valley City14hud_multifamily_arcgis
2027-04-30109 5th Ave SEPARKVIEW ESTATES, Lidgerwood, ND: the 515/8 NC contract expires 2027-04-30, covering 8 assisted units.Lidgerwood8hud_multifamily_arcgis
2027-05-281425 31st Ave SEASI-MINOT, Minot, ND: the PRAC/811 contract expires 2027-05-28, covering 24 assisted units.Minot2524 assisted_unitshud_multifamily_arcgis
2027-05-31715 3rd Ave SEJAMES HOUSE, Jamestown, ND: the 515/8 NC contract expires 2027-05-31, covering 33 assisted units.Jamestown7033 assisted_unitshud_multifamily_arcgis
2027-08-31607 6th St EBROOKELAND HOMES, Williston, ND: the 515/8 NC contract expires 2027-08-31, covering 34 assisted units.Williston34hud_multifamily_arcgis
2027-08-31BETHANY TOWERS II, Fargo, ND: the 202/8 NC contract expires 2027-08-31, covering 20 assisted units.Fargo4520 assisted_unitshud_multifamily_arcgis
2027-08-31906 Prospect AveGRAFTON GARDENS, Grafton, ND: the 515/8 NC contract expires 2027-08-31, covering 16 assisted units.Grafton16hud_multifamily_arcgis
2027-09-30212 N 14th StOAKWOOD I, Oakes, ND: the Sec 8 NC contract expires 2027-09-30, covering 11 assisted units.Oakes2011 assisted_unitshud_multifamily_arcgis
2027-09-30117 2nd StEDGEWOOD APARTMENTS, Edgeley, ND: the Sec 8 NC contract expires 2027-09-30, covering 6 assisted units.Edgeley136 assisted_unitshud_multifamily_arcgis
2027-10-319 1st Ave NEKULM PARK, Kulm, ND: the Sec 8 NC contract expires 2027-10-31, covering 8 assisted units.Kulm128 assisted_unitshud_multifamily_arcgis
2027-11-301515 Gardenette DrNEW HORIZONS, Jamestown, ND: the 515/8 NC contract expires 2027-11-30, covering 16 assisted units.Jamestown16hud_multifamily_arcgis
2027-11-30335 Kiwanis DrHILLSBORO ELDERLY HOUSING, Hillsboro, ND: the 202/8 NC contract expires 2027-11-30, covering 22 assisted units.Hillsboro22hud_multifamily_arcgis
2028-05-31415 7th Ave SEHOUSING AUTHORITY OF MOUNTRAIL COUNTY, Stanley, ND: the Sec 8 NC contract expires 2028-05-31, covering 39 assisted units.Stanley39hud_multifamily_arcgis

Read from the published event tape on 2026-09-12.

The call that returns this

One anonymous POST. No key, no signup, no rate card. Raise limit to 50, or change state to any of the 54 covered.

curl -s https://exchange-production-9123.up.railway.app/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_property_events","arguments":{"event_type":"SUBSIDY_CONTRACT_EXPIRING","state":"ND","within_days":1825,"limit":500}}}'

Putting this in your own agent

The same endpoint is a Model Context Protocol server, so an assistant can ask it the question instead of you reading a table. It answers for every covered state, not just North Dakota, and it is the same free tier.

Claude Code

one command, then it is available in every session

claude mcp add --transport http dfx-real-estate https://exchange-production-9123.up.railway.app/mcp

Claude Desktop

claude_desktop_config.json, then restart the app. It cannot reach a remote server directly, so this bridges through mcp-remote.

{
  "mcpServers": {
    "dfx-real-estate": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://exchange-production-9123.up.railway.app/mcp"
      ]
    }
  }
}

Cursor, Windsurf, Cline and Zed

the mcp.json their settings panel writes

{
  "mcpServers": {
    "dfx-real-estate": {
      "url": "https://exchange-production-9123.up.railway.app/mcp"
    }
  }
}

VS Code

the servers key, which is spelled differently to everything above

{
  "servers": {
    "dfx-real-estate": {
      "type": "http",
      "url": "https://exchange-production-9123.up.railway.app/mcp"
    }
  }
}

Then ask it this

Nothing names DFX. If the install worked, the assistant picks the tool itself.

Which HUD-assisted properties in North Dakota have subsidy contracts expiring in the next 24 months?

There is no signup, no API key and no OAuth for anything free, and eleven of the twelve tools are free. A plain GET on the endpoint returns every tool schema, so a client can be pointed at it and evaluated before it is trusted.

Where this does not help

An expiry is a date on a contract. It is not a prediction that the owner will opt out.

The same question in other states

Facts on this page were last checked against the running product on . Prices are read from the live billing configuration, so this page and your invoice cannot disagree. The machine-readable version of this record is at /ai/entity.json.