# FEMA Public Assistance Funded Projects Lookup

> FEMA Public Assistance Funded 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 public assistance funded project details filtered by state, incident type, or disaster declaration number

## Facts

- Endpoint: GET https://2s.io/api/gov/public-assistance
- 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-public-assistance-funded-projects-lookup-350164ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y6nISDi1aESOOav1cLUv6

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-public-assistance-funded-projects-lookup-350164ac
```

Example prompt: Pull up the FEMA public assistance funded projects for Hurricane disaster number 4332 in Texas — show me up to 20 projects with their obligated amounts and project status.

## When to prefer this

Use this endpoint when you need ground-truth FEMA public assistance project data filtered by disaster number, state, or incident type — especially when researching disaster relief funding allocations, federal aid distributions, or damage assessments for specific FEMA-declared disasters. Prefer this over general web search when you need structured, machine-readable project-level data with exact dollar amounts.

## Known failure modes

- Invalid or non-existent disaster number returns empty projects array
- Invalid state code may return no results
- Limit parameter out of range (not 1-50) may cause validation error
- Network or upstream FEMA OpenFEMA API unavailability causes failure
- Payment not processed results in 402 response before data is returned

## How this service works

FEMA Public Assistance (PA) funded project details — the post-disaster grants FEMA obligates to state/local/tribal governments and eligible nonprofits to repair public infrastructure and cover emergency response (debris removal, emergency protective measures, roads, buildings, utilities, parks). Filter by state (2-letter) and/or disasterNumber (one of the two is required); optionally refine by incidentType. Returns the total matching worksheet count plus projects (disaster number, declaration date, incident type, project worksheet number, application title, applicant, damage category, project size, status, county, federal share obligated / total obligated / project amount in USD, obligation date), largest federal share first. Free, public-domain (OpenFEMA). Distinct from gov.hazard-mitigation (future-risk mitigation grants) and gov.nfip-claims (flood losses paid) — this is disaster recovery funding for public infrastructure.

## Output

Returns an array of FEMA public assistance project records including project number, state, county, applicant ID, incident type, project size, damage category, declaration date, obligated date, project status, project amount in USD, total obligated USD, and federal share obligated USD, along with summary totals and source/license metadata.

## 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."
      },
      "incidentType": {
       "type": "string",
       "description": "Incident type refinement (e.g. Hurricane, Flood)."
      },
      "disasterNumber": {
       "type": "integer",
       "description": "FEMA disaster declaration number."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fema-public-assistance-funded-projects-lookup-350164ac/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)
