Pricing
from $40.00 / 1,000 mentions
๐ OpenFEMA NFIP Flood Insurance Claims
NFIP flood-insurance claims (redacted) by state and year: flood zone, amounts paid on building/contents, coverage, loss date, location. For P&C insurers, reinsurers, flood-risk and climate analysts.
Pricing
from $40.00 / 1,000 mentions
Rating
0.0
(0)
Developer
Actor stats
0
Bookmarked
4
Total users
0
Monthly active users
5 days ago
Last modified
Categories
Share
Pull redacted, claim-level National Flood Insurance Program (NFIP) loss records straight from FEMA's OpenFEMA platform โ the authoritative, government-published history of what the United States actually pays out when it floods. Filter by state and year-of-loss and get one structured JSON record per claim: flood zone, building and contents amounts paid, the flood event, and the loss date. This is the granular paid-loss data that P&C insurers, reinsurers, catastrophe modelers, and climate-risk analysts use to calibrate flood pricing and exposure โ sourced from the only dataset that covers the entire federal flood program rather than a single carrier's book.
One actor. One token. The claim-level flood-loss history behind cat-model calibration and flood-risk pricing โ delivered as pay-per-record JSON, no enterprise data licence.
Why use this
- Actual paid losses, not modeled estimates. Most flood-risk products sell you a model's prediction. This is FEMA's record of what was actually paid on real NFIP claims โ the ground-truth your model gets calibrated against.
- Whole-program coverage. The NFIP underwrites the large majority of residential flood policies in the US, so this is a near-complete federal flood-loss picture, not one carrier's slice.
- Building vs contents split. Each claim separates
amountPaidOnBuildingClaimandamountPaidOnContentsClaimโ essential for severity modeling and coverage-mix analysis. - Flood-zone tagged. Every claim carries its
ratedFloodZone, letting you analyze loss severity by zone (A/AE/VE/X) โ the backbone of flood-rating work. - Official source, ETL-ready. Reads FEMA's public OpenFEMA dataset; redacted for privacy at the source. Stable flat JSON loads straight into Snowflake, BigQuery, Postgres, or a notebook.
What you get
Each record represents one redacted NFIP flood-insurance claim. Core fields:
stateโ two-letter state of the insured propertydateOfLossโ the date the flood loss occurredratedFloodZoneโ the FEMA flood zone the policy was rated in (e.g.AE,VE,X,A)amountPaidOnBuildingClaimโ USD paid on the building portion of the claimamountPaidOnContentsClaimโ USD paid on the contents portion of the claimfloodEventโ the named flood event associated with the loss (when designated)
Records are redacted at the FEMA source to protect policyholder privacy โ there is no name, full address, or policy number, by design.
Use cases
- Flood-risk pricing & rate filing โ P&C actuaries aggregate
amountPaidOnBuildingClaimandamountPaidOnContentsClaimbyratedFloodZoneandstateto derive empirical loss-cost relativities for private-flood rate filings competing with the NFIP. - Catastrophe-model calibration โ Cat modelers and reinsurers backtest vendor flood models (against the actual NFIP paid-loss distribution by zone and event) to validate severity curves before binding treaty capacity.
- Reinsurance & ILS underwriting โ Reinsurance and insurance-linked-securities desks size flood exposure and event severity (e.g. by pulling all claims tagged to a named hurricane's
floodEvent) to price retrocession and cat-bond layers. - Climate-risk analytics โ Climate and ESG analysts trend flood-loss frequency and severity by state and year-of-loss to quantify physical-risk exposure for real-estate, mortgage, and municipal-bond portfolios.
- Mortgage & real-estate risk โ Lenders and proptech firms join paid-loss intensity by zone to property portfolios to flag concentration risk and inform flood-insurance requirements.
- Public-policy & academic research โ Researchers study NFIP loss patterns, repetitive-loss properties, and the equity of flood-zone rating using the program's own paid-claim record.
- Disaster-response planning โ Emergency-management and resilience teams quantify historical loss footprints of major flood events to prioritize mitigation spend.
Sample output
{"state":"TX","dateOfLoss":"2017-08-27","ratedFloodZone":"AE","amountPaidOnBuildingClaim":184320.55,"amountPaidOnContentsClaim":41875.00,"floodEvent":"Hurricane Harvey"}
Reading the data: flood zones, building vs contents, and named events
Three fields do most of the analytical work, and it helps to understand how they interact:
ratedFloodZoneis the FEMA flood zone the policy was rated in. The high-risk Special Flood Hazard Areas (A,AE, and the coastal high-velocityVE) carry the highest expected severity;Xzones are moderate-to-low risk and tend to show smaller, less frequent paid losses. GroupingamountPaidOnBuildingClaimbyratedFloodZoneis the single most common analysis this dataset supports โ it produces empirical severity relativities by zone.amountPaidOnBuildingClaimvsamountPaidOnContentsClaimmust be analyzed separately, not summed blindly. NFIP underwrites and adjusts building and contents coverage independently, and the mix varies sharply by occupancy (a slab-on-grade home vs a contents-heavy small business). Severity curves built on the building component behave very differently from contents.floodEventties a claim to a named event when one is designated. This is what lets you reconstruct the loss footprint of a specific catastrophe โ pull a state and year window, then group onfloodEventto isolate, say, every claim attributed to a single landfalling hurricane.
Common analysis recipes
- Single-event severity:
{"state": "TX", "yearOfLossFrom": 2017, "maxResults": 5000}then group returned rows onfloodEventto isolate one hurricane's claims and chart the paid-loss distribution byratedFloodZone. - Zone relativity table: pull a state's recent years and pivot mean/percentile
amountPaidOnBuildingClaimbyratedFloodZoneโ the empirical input to a private-flood rate filing. - Coastal vs inland mix: compare
VE/AE(coastal) againstA/X(inland) severity to size storm-surge vs riverine exposure in a book. - Trend over time: run the actor for successive
yearOfLossFromcuts to trend frequency and severity and quantify a warming-climate signal in the paid-loss record.
Input parameters
| Parameter | What it does |
|---|---|
state | Two-letter state code to filter claims by (e.g. TX, FL, LA). |
yearOfLossFrom | Return only claims with a year of loss greater than or equal to this year. |
maxResults | Maximum number of claim records to return. |
How to use
Python (apify-client)
from apify_client import ApifyClientclient = ApifyClient("YOUR_TOKEN")run = client.actor("nexgendata/openfema-nfip-flood-claims").call(run_input={"state":"TX","yearOfLossFrom":2017,"maxResults":1000,})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item["dateOfLoss"], item["ratedFloodZone"],item["amountPaidOnBuildingClaim"], item["floodEvent"])
cURL
curl-X POST "https://api.apify.com/v2/acts/nexgendata~openfema-nfip-flood-claims/run-sync-get-dataset-items?token=YOUR_TOKEN"\-H"Content-Type: application/json"\-d'{"state": "FL","yearOfLossFrom": 2020,"maxResults": 5000}'
No-code (Zapier / Make)
Use the Apify "Run actor and get dataset items" action with actor ID nexgendata/openfema-nfip-flood-claims, then load the rows into a spreadsheet or BI tool and pivot paid losses by ratedFloodZone and state.
Pricing
This actor runs on Apify's pay-per-event (PPE) model โ $0.10 per result (one charge per claim record returned), plus a sub-cent actor-start event. No subscription, no seat licence, no minimum.
Worked example:
- A targeted single-event pull returning 250 claims โ $25.00
- A state-year analysis returning 500 claims โ $50.00
- A multi-year exposure study capped at
maxResults=5000โ up to $500.00 (usemaxResultsto bound cost precisely)
Because billing is per result, a narrow filter that returns few claims costs only for those rows โ you never pay for an empty run.
How this compares to a commercial flood-data vendor
Commercial flood-risk and catastrophe-data products (cat-model vendor data feeds, proprietary flood-score APIs, and reinsurance-broker analytics) sell flood-loss intelligence on annual enterprise licences running into the high five and six figures. Those products add modeled scores, parcel-level geocoding, and proprietary hazard layers you may still need. But the actual NFIP paid-loss record โ the calibration target underneath all of them โ is public FEMA data. If your workflow is calibrating a model, sizing event severity, or trending flood losses by zone and state, you do not need a six-figure data licence to get the claim-level paid amounts. You need this actor, queryable from your own code at pay-per-record cost.
FAQ
Q: Where does the data come from? A: FEMA's OpenFEMA platform โ the official, public NFIP redacted claims dataset published by the federal government.
Q: Is personal information exposed? A: No. FEMA redacts the dataset at the source to protect policyholder privacy: there are no names, full addresses, or policy numbers. The records are loss-level facts (zone, amounts, date, event).
Q: What does ratedFloodZone mean?
A: It's the FEMA flood zone the policy was rated in โ e.g. AE and A (high-risk Special Flood Hazard Areas), VE (coastal high-velocity), and X (moderate-to-low risk). Severity analysis by zone is one of the most common uses of this data.
Q: Why are building and contents split into two fields?
A: NFIP policies cover building and contents separately, and they are adjusted and paid separately. Keeping amountPaidOnBuildingClaim and amountPaidOnContentsClaim distinct is essential for accurate severity and coverage-mix modeling.
Q: Can I pull all claims for a specific hurricane?
A: Filter by state and yearOfLossFrom to narrow to the relevant period, then filter the returned rows on floodEvent for the named event (e.g. Hurricane Harvey) in your downstream pipeline.
Q: How current is it? A: The dataset reflects FEMA's published NFIP claims as of its latest OpenFEMA refresh. Schedule the actor periodically via Apify's scheduler to pick up newly published claims after major events.
Schema stability & versioning
This actor follows NexGenData's additive-only schema contract. New fields may be added over time (appearing as new JSON keys, defaulting to null for older runs), but existing fields are never renamed or removed without a major-version bump and advance notice. Field semantics โ currency, date formats, zone codes โ are never silently changed. Build production pipelines on this output with confidence.
Compliance & legal
- This actor reformats public, redacted FEMA OpenFEMA data. It is not affiliated with, endorsed by, or sponsored by FEMA or the NFIP.
- The data is redacted at the FEMA source for privacy. Nothing here is insurance, legal, or investment advice.
- For any regulated decision โ rate filings, treaty pricing, underwriting โ verify against the primary OpenFEMA dataset and apply appropriate actuarial review.
- You are responsible for ensuring your downstream use complies with applicable laws.
Related NexGenData actors
Part of NexGenData's Environmental / ESG and Finance clusters โ pair this actor with:
- EPA TRI Toxic Release Facilities
- EPA ECHO Enforcement Scraper
- FDIC Bank Financials & Health
- US Treasury Auction Results
- Global Central-Bank Policy Rates (BIS)
Browse the full 200+ actor catalog at https://apify.com/nexgendata?fpr=2ayu9b.
