{
  "x402Version": 2,
  "id": 7848,
  "slug": "7848",
  "resource": "https://loonie-toll.onrender.com/disasters",
  "description": "Federal disaster declarations for a US state or county: what is open now, incident types, and how recent.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "30000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "DUPiupXtuox38dcGoXUKer5mAydCzmaHjrbQ66qeEm8s",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "30000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "30000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "30000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "state": "FL",
            "years": 5
          },
          "type": "http"
        },
        "output": {
          "example": {
            "counts": {
              "declarations": 22,
              "openAndRecent": 2,
              "openAtFema": 14
            },
            "declarations": [
              {
                "ageDays": 139,
                "closedOut": null,
                "declaredAt": "2026-04-23T00:00:00.000Z",
                "designatedArea": "Levy (County)",
                "id": "FM-5632-FL",
                "incidentBegan": "2026-04-21T00:00:00.000Z",
                "incidentEnded": null,
                "incidentType": "Fire",
                "openAtFema": true,
                "type": "FM"
              },
              {
                "ageDays": 140,
                "closedOut": null,
                "declaredAt": "2026-04-22T00:00:00.000Z",
                "designatedArea": "Clay (County)",
                "id": "FM-5631-FL",
                "incidentBegan": "2026-04-19T00:00:00.000Z",
                "incidentEnded": null,
                "incidentType": "Fire",
                "openAtFema": true,
                "type": "FM"
              }
            ],
            "disclaimer": "Advisory only, provided as is without warranty of accuracy or completeness. Federal records may lag, be revised, or contain errors. Declaration status is not a determination of individual eligibility …",
            "query": {
              "county": null,
              "state": "FL",
              "years": 5
            },
            "reasons": [
              "2 declaration(s) open at FEMA and declared within the last 18 months. Most recent: Fire (FM-5632-FL) declared 2026-04-23."
            ],
            "retrievedAt": "2026-09-09T00:53:49.938Z",
            "source": "FEMA OpenFEMA — Disaster Declarations Summaries",
            "topIncidentTypes": [
              {
                "count": 10,
                "incidentType": "Hurricane"
              },
              {
                "count": 6,
                "incidentType": "Tropical Storm"
              }
            ],
            "verdict": "ACTIVE_DECLARATION"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "properties": {
                  "county": {
                    "description": "County name to narrow to, e.g. Miami-Dade",
                    "type": "string"
                  },
                  "state": {
                    "description": "Two-letter US state code, e.g. FL",
                    "type": "string"
                  },
                  "years": {
                    "description": "Lookback window in years, default 5",
                    "type": "integer"
                  }
                },
                "required": [
                  "state"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "counts": {
                    "properties": {
                      "declarations": {
                        "type": "integer"
                      },
                      "openAndRecent": {
                        "type": "integer"
                      },
                      "openAtFema": {
                        "type": "integer"
                      }
                    },
                    "type": "object"
                  },
                  "declarations": {
                    "items": {
                      "properties": {
                        "ageDays": {
                          "type": "integer"
                        },
                        "closedOut": {
                          "type": [
                            "null",
                            "string"
                          ]
                        },
                        "declaredAt": {
                          "type": "string"
                        },
                        "designatedArea": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "incidentBegan": {
                          "type": "string"
                        },
                        "incidentEnded": {
                          "type": [
                            "null",
                            "string"
                          ]
                        },
                        "incidentType": {
                          "type": "string"
                        },
                        "openAtFema": {
                          "type": "boolean"
                        },
                        "type": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "disclaimer": {
                    "type": "string"
                  },
                  "query": {
                    "properties": {
                      "county": {
                        "type": "null"
                      },
                      "state": {
                        "type": "string"
                      },
                      "years": {
                        "type": "integer"
                      }
                    },
                    "type": "object"
                  },
                  "reasons": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "retrievedAt": {
                    "type": "string"
                  },
                  "source": {
                    "type": "string"
                  },
                  "topIncidentTypes": {
                    "items": {
                      "properties": {
                        "count": {
                          "type": "integer"
                        },
                        "incidentType": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "verdict": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "loonie-toll.onrender.com",
  "lastUpdated": "2026-09-09T01:33:26.033Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-09T01:33:25.82Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "loonie-toll.onrender.com",
    "manifest_name": "loonie-toll.onrender.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}