# FEMA Disaster Declaration County Detail by Hurricane Event

> FEMA Disaster Declaration County Detail by Hurricane Event is a paid API for AI agents from api.querylines.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns per-county FEMA disaster-declaration details (declaration type/date, incident window, IA/PA program flags) for a specified U.S. hurricane event.

## Facts

- Endpoint: GET https://api.querylines.com/v1/cat/counties
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fema-disaster-declaration-county-detail-by-hurricane-event-a038622f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LtmQrRUQ0xojcL8xjAp1m

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-declaration-county-detail-by-hurricane-event-a038622f
```

Example prompt: Pull the FEMA disaster-declaration details for every county declared in Hurricane Ian — I need the declaration type, declaration date, incident window, and whether each county got Individual Assistance or Public Assistance.

## When to prefer this

Use this endpoint when you need structured, county-level FEMA disaster declaration data for a specific named hurricane, including program eligibility flags (IA/PA). It is purpose-built for insurance, risk, and catastrophe analytics workflows where knowing which counties received federal declarations — and what type — is essential. Prefer this over raw FEMA open data APIs when you want a clean, queryable record with pre-joined incident metadata.

## Known failure modes

- Missing or invalid 'event' query parameter returns an error — must use a valid event_key from /v1/cat/events
- Unknown event_key returns empty results or 404
- Invalid state code returns an error or empty county list
- Payment not processed (x402 flow) results in 402 Payment Required response
- Rate limiting or quota exhaustion returns 429

## How this service works

Per-county FEMA disaster-declaration detail for one U.S. hurricane (declaration type/date, incident window, Individual/Public Assistance program flags). Events from the free NOAA/FEMA catastrophe dataset. $0.10 per query. Free discovery: /v1/cat/events, /v1/cat/sample. Docs: https://api.querylines.com/openapi.json

## Output

A list of county-level records for the specified hurricane event, each containing the county name, state, FEMA declaration type (e.g. Major Disaster), declaration date, incident period start and end dates, and boolean flags indicating whether Individual Assistance (IA) and/or Public Assistance (PA) programs were activated for that county.

## 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": [
      "event"
     ],
     "properties": {
      "event": {
       "type": "string",
       "description": "event_key from /v1/cat/events"
      },
      "state": {
       "type": "string",
       "description": "2-letter code; omit for all declared states"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "year": 2022,
  "count": 67,
  "event": "hurricane-ian-2022",
  "peril": "hurricane",
  "state": "FL",
  "source": "FEMA OpenFEMA Disaster Declarations; NOAA HURDAT2 best track",
  "data_as_of": "2022",
  "event_name": "Hurricane Ian",
  "report_date": "2026-07-12",
  "declarations": [
   {
    "state": "FL",
    "county": "LEE",
    "programs": {
     "hm": true,
     "ia": true,
     "ih": false,
     "pa": true
    },
    "designated_area": "Lee (County)",
    "disaster_number": 4673,
    "fips_state_code": "12",
    "declaration_date": "2022-09-29",
    "declaration_type": "DR",
    "fips_county_code": "071",
    "declaration_title": "HURRICANE IAN",
    "incident_end_date": "2022-11-04",
    "incident_begin_date": "2022-09-23",
    "fema_declaration_string": "DR-4673-FL"
   }
  ],
  "max_category": 4,
  "coverage_note": "Catastrophe events are federal FEMA disaster declarations grouped into named storms; a county appearing here means it was federally declared, not a measure of insured loss.",
  "landfall_date": "2022-09-28"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fema-disaster-declaration-county-detail-by-hurricane-event-a038622f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.querylines.com](https://www.zero.xyz/host/api.querylines.com/llms.txt)
