# FEMA Disaster Declarations by State

> FEMA Disaster Declarations by State is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00496/call, status unknown (last checked 2026-09-15).

Returns federal disaster declarations for a given US state, including incident type, declaration date, designated counties, and authorized assistance programs.

## Facts

- Endpoint: GET https://fittings.sh/v1/fema/disaster-declarations
- Price: $0.00496/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-declarations-by-state-3661425e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vCD8sJhsFu5fFyuc4TXgE

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-declarations-by-state-3661425e
```

Example prompt: Can you pull up the most recent FEMA disaster declarations for Texas, specifically any that involve hurricanes or severe storms?

## When to prefer this

Use this endpoint when you need structured, filterable FEMA disaster declaration data for a specific US state, especially when you need to filter by incident type or date range. Prefer this over general web search when you need machine-readable fields like designated counties and authorized assistance programs rather than news summaries.

## Known failure modes

- Invalid or unsupported state code returns an error or empty result
- Date filter with no matching declarations returns empty list
- Unsupported incidentType string may return no results or be ignored
- Rate limiting or payment failure returns HTTP 402 or 429
- Network timeout if FEMA data source is temporarily unavailable

## How this service works

Federal disaster declarations for a state, with incident type, declaration date, designated county and which assistance programs were authorized.

## Output

A list of federal disaster declaration records for the requested state, each containing the disaster number, incident type (e.g. Hurricane, Flood, Fire), declaration date, designated county or area, and which FEMA assistance programs (e.g. Individual Assistance, Public Assistance, Hazard Mitigation) were authorized.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "state"
     ],
     "properties": {
      "limit": {
       "type": "number",
       "description": "1-50, default 10"
      },
      "since": {
       "type": "string",
       "description": "Optional ISO date; only declarations on or after it"
      },
      "state": {
       "type": "string",
       "description": "Two-letter state or territory code"
      },
      "incidentType": {
       "type": "string",
       "description": "Optional, e.g. Fire, Flood, Hurricane, Severe Storm"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fema-disaster-declarations-by-state-3661425e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
