# ClearCheck Federal Disaster Declarations

> ClearCheck Federal Disaster Declarations is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns federal disaster declarations for a US state or county, including open/active status, incident types, and recency.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/disasters
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-federal-disaster-declarations-95dff0f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eViXMYkkB_d0wYBkp11Jz

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 clearcheck-federal-disaster-declarations-95dff0f9
```

Example prompt: Are there any open federal disaster declarations in Florida right now? Look back 3 years and narrow it down to Miami-Dade County if you can.

## When to prefer this

Use this endpoint when you need authoritative, structured federal disaster declaration data for a specific US state or county, particularly when you need to check if a location currently has open FEMA declarations, understand the types of disasters historically declared, or assess recent disaster activity for compliance, insurance, risk assessment, or emergency management purposes.

## Known failure modes

- Invalid or missing state code returns an error
- County name not found or misspelled may return no results or state-level results only
- No declarations found within the lookback window returns empty declarations array
- FEMA data source temporarily unavailable may return error or stale data
- Years parameter out of reasonable range may return unexpected results

## How this service works

Federal disaster declarations for a US state or county: what is open now, incident types, and how recent.

## Output

Returns a structured response with: a verdict string summarizing the overall disaster status, a list of individual disaster declarations (each with ID, type, incident type, declaration date, age in days, open/closed status, and designated area), counts of total declarations and open ones, top incident types by frequency, data source attribution, retrieval timestamp, and a disclaimer.

## 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": {
      "state": {
       "type": "string",
       "description": "Two-letter US state code, e.g. FL"
      },
      "years": {
       "type": "integer",
       "description": "Lookback window in years, default 5"
      },
      "county": {
       "type": "string",
       "description": "County name to narrow to, e.g. Miami-Dade"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "state": {
         "type": "string"
        },
        "years": {
         "type": "integer"
        },
        "county": {
         "type": "null"
        }
       }
      },
      "counts": {
       "type": "object",
       "properties": {
        "openAtFema": {
         "type": "integer"
        },
        "declarations": {
         "type": "integer"
        },
        "openAndRecent": {
         "type": "integer"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "retrievedAt": {
       "type": "string"
      },
      "declarations": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "string"
         },
         "type": {
          "type": "string"
         },
         "ageDays": {
          "type": "integer"
         },
         "closedOut": {
          "type": [
           "null",
           "string"
          ]
         },
         "declaredAt": {
          "type": "string"
         },
         "openAtFema": {
          "type": "boolean"
         },
         "incidentType": {
          "type": "string"
         }
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-federal-disaster-declarations-95dff0f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
