# FEMA Hazard Mitigation Assistance Projects Lookup

> FEMA Hazard Mitigation Assistance Projects Lookup is a paid API for AI agents from 2s.io, paid per call via x402, $0.0018/call, status unknown (last checked 2026-09-15).

Retrieves FEMA hazard mitigation assistance project data filtered by state, fiscal year, program area, or disaster number

## Facts

- Endpoint: GET https://2s.io/api/gov/hazard-mitigation
- Price: $0.0018/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fema-hazard-mitigation-assistance-projects-lookup-3ba0aef5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_61qg4Ko-CheIC_o1zkBq6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fema-hazard-mitigation-assistance-projects-lookup-3ba0aef5
```

Example prompt: Show me FEMA hazard mitigation assistance projects in Texas for fiscal year 2022 under the HMGP program — return up to 20 results.

## When to prefer this

Use this endpoint when you need authoritative, ground-truth FEMA hazard mitigation project data including funding amounts, benefit-cost ratios, and project status by state, program, or disaster. Prefer this over general web search when you need structured, filterable records directly from OpenFEMA for analysis, reporting, or policy research.

## Known failure modes

- Invalid state code returns empty results or error
- programArea not matching valid FEMA codes (HMGP, PDMC, FMA) may return no results
- disasterNumber not found in FEMA records returns empty project list
- limit out of range (must be 1-50) may cause validation error
- Network or upstream FEMA OpenFEMA API unavailability causes failure

## How this service works

FEMA Hazard Mitigation Assistance (HMA) funded projects — the pre- and post-disaster mitigation grants FEMA has actually obligated (HMGP, BRIC/PDM, FMA). Filter by state (2-letter), disasterNumber, programFy (program fiscal year), and/or programArea; at least one filter is required. Returns the total matching project count plus projects (identifier, program area, project type, status, recipient/subrecipient, county, disaster number, project amount and federal share obligated in USD, cost-share %, benefit-cost ratio, number of properties, approval/close dates), largest federal share first. Free, public-domain (OpenFEMA). Distinct from gov.public-assistance (post-disaster recovery grants) and gov.nfip-claims (flood losses paid) — this is mitigation funding: who got money to reduce future risk, where, and at what benefit-cost ratio.

## Output

Returns a list of FEMA hazard mitigation assistance projects matching the query, each with state, county, status, program area, project type, total project amount in USD, federal share obligated, benefit-cost ratio, number of properties protected, recipient and subrecipient names, approval and closure dates, and cost share percentage. Also includes summary totals like total federal share and average benefit-cost ratio, plus source attribution to OpenFEMA.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max projects (1-50, default 10)."
      },
      "state": {
       "type": "string",
       "description": "2-letter US state/territory code."
      },
      "programFy": {
       "type": "integer",
       "description": "Program fiscal year (e.g. 2022)."
      },
      "programArea": {
       "type": "string",
       "description": "Program area (e.g. HMGP, PDMC, FMA)."
      },
      "disasterNumber": {
       "type": "integer",
       "description": "FEMA disaster declaration number."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fema-hazard-mitigation-assistance-projects-lookup-3ba0aef5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
