Professional
FEMA Disasters & Flood Zones
Federal disaster declarations by state, type, and year. NFIP community flood insurance participation status by state and county.
Endpoints
GET /api/v1/pro/fema/disasters Requires API key Search disaster declarations by state, incident type, or year.
Parameters
| state | Two-letter state code |
| type | Incident type (Flood, Hurricane, Severe Storm, Fire, etc.) |
| year | Declaration year |
curl -H "Authorization: Bearer pro_YOUR_KEY" \
"https://api.verilexdata.com/api/v1/pro/fema/disasters?state=TX&type=Flood" Response
{
"dataset": "fema",
"type": "disasters",
"count": 2,
"data": [
{
"disaster_number": 4586,
"state": "TX",
"declaration_type": "DR",
"title": "SEVERE STORMS AND FLOODING",
"incident_type": "Flood",
"declaration_date": "2024-05-15",
"incident_begin": "2024-04-28",
"incident_end": "2024-05-20",
"designated_area": "Harris County"
}
]
} GET /api/v1/pro/fema/flood Requires API key Search NFIP community flood insurance participation by state, county, or community name.
| state | Two-letter state code |
| county | County name (partial match) |
| community | Community name (partial match) |
curl -H "Authorization: Bearer pro_YOUR_KEY" \
"https://api.verilexdata.com/api/v1/pro/fema/flood?state=FL&county=Miami" GET /api/v1/pro/fema/stats Free Total disasters, latest declaration, and NFIP community count.