# FEMA Disaster Assistance Lookup

> FEMA Disaster Assistance 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 disaster assistance records (Individuals & Households Program or Public Assistance) filtered by state, ZIP, disaster number, or tenancy type.

## Facts

- Endpoint: GET https://2s.io/api/gov/disaster-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-disaster-assistance-lookup-8fee9b1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZE57Bsz0rVdxZq-dYeyS5

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-disaster-assistance-lookup-8fee9b1c
```

Example prompt: Pull FEMA disaster assistance records for disaster number 4673 in Florida — show me up to 10 results for homeowners using the individuals program.

## When to prefer this

Use this endpoint when you need structured, quantitative FEMA disaster assistance data — approved amounts, registration counts, and geographic breakdowns — for a specific declared disaster, state, or ZIP code. Prefer this over general web search when ground-truth OpenFEMA figures are required for analysis, reporting, or eligibility research.

## Known failure modes

- Invalid or unrecognized disaster number returns empty records array
- State code not matching any disaster returns zero results
- Unsupported program value causes query parse error
- Limit out of range (outside 1–50) may return error or default
- ZIP code used with program=public (not supported) may return empty or error

## How this service works

The (most) everything API: 575+ pay-per-call endpoints for AI agents — ground-truth data, a full AI gateway, and agent infrastructure (storage, queues, watchers). USDC via x402, no signup, no API keys, and upto billing: pay actual usage, not the quote.

## Output

Returns an array of FEMA assistance records including city, county, state, ZIP, approved amount in USD, rental amount, repair/replace amount, other needs amount, valid registrations, and number approved for FEMA assistance — plus aggregate totals for returned records and total matching records.

## 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 records (1-50, default 10)."
      },
      "state": {
       "type": "string",
       "description": "2-letter US state/territory code."
      },
      "program": {
       "type": "string",
       "description": "'individuals' (IHP, default) or 'public' (Public Assistance)."
      },
      "tenancy": {
       "type": "string",
       "description": "For program=individuals: 'owner' (default) or 'renter'."
      },
      "zipCode": {
       "type": "string",
       "description": "5-digit ZIP code (program=individuals only)."
      },
      "disasterNumber": {
       "type": "integer",
       "description": "FEMA disaster number (e.g. 4673)."
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fema-disaster-assistance-lookup-8fee9b1c/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)
