# Suverse FEMA Disaster Declarations

> Suverse FEMA Disaster Declarations is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Retrieves US federal disaster declarations from OpenFEMA, including declaration type, incident type, state, county, incident dates, and authorized assistance programs, with OData filter support.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-fema-disaster-declarations
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-fema-disaster-declarations-2dd2f9bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FrPkJvE8angXn3DHsaTaL

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 suverse-fema-disaster-declarations-2dd2f9bc -d '<json body>'
```

Example prompt: Can you pull all federal disaster declarations for Texas that involved hurricanes, and show me which assistance programs were authorized for each?

## When to prefer this

Choose this endpoint when you need structured, queryable access to official US federal disaster declaration data from OpenFEMA, especially when you need to filter by geography, date range, incident type, or assistance program. It is keyless and does not require API credentials, making it ideal for quick lookups or automated pipelines. Prefer this over direct OpenFEMA API calls when using the x402 payment-gated proxy infrastructure.

## Known failure modes

- Invalid OData filter syntax returns a 400 error with filter parsing details
- No records matching the filter criteria returns an empty result set
- Overly broad queries with no filters may return very large datasets or time out
- Malformed request body causes a 400 bad request response
- Payment not included or insufficient causes a 402 Payment Required response

## How this service works

US federal disaster declarations from OpenFEMA: declaration and incident type, state, county, incident dates and authorised assistance programs. OData filter supported. Keyless.

## Output

Returns a collection of FEMA disaster declaration records, each containing the declaration number, declaration type (major disaster, emergency, fire management), incident type (hurricane, flood, earthquake, etc.), affected state and county, incident begin and end dates, declaration date, and a list of authorized assistance programs (individual assistance, public assistance, hazard mitigation).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-fema-disaster-declarations-2dd2f9bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
