Federal Emergency Management Agency NFIP API

National Flood Insurance Program data

Operations 3

GET /v2/FimaNfipPolicies List NFIP policies #
GET /v2/FimaNfipClaims List NFIP claims #
GET /v1/NfipCommunityStatusBook List NFIP community status book entries #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/federal-emergency-management-agency-nfip-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

federal-emergency-management-agency-nfip-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenFEMA Assistance NFIP API
  description: The OpenFEMA API provides programmatic access to FEMA's public datasets including disaster declarations, public assistance, individual assistance, hazard mitigation, and the National Flood Insurance Program (NFIP).
  version: '2.0'
  contact:
    name: OpenFEMA
    url: https://www.fema.gov/about/openfema/api
servers:
- url: https://www.fema.gov/api/open
  description: OpenFEMA production endpoint
tags:
- name: NFIP
  description: National Flood Insurance Program data
paths:
  /v2/FimaNfipPolicies:
    get:
      operationId: listFimaNfipPolicies
      summary: List NFIP policies
      description: Details on NFIP policy transactions derived from the program's system of record.
      tags:
      - NFIP
      parameters:
      - $ref: '#/components/parameters/Top'
      - $ref: '#/components/parameters/Skip'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: NFIP policies response
  /v2/FimaNfipClaims:
    get:
      operationId: listFimaNfipClaims
      summary: List NFIP claims
      description: Details on NFIP claims transactions from the program's reporting platform.
      tags:
      - NFIP
      parameters:
      - $ref: '#/components/parameters/Top'
      - $ref: '#/components/parameters/Skip'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: NFIP claims response
  /v1/NfipCommunityStatusBook:
    get:
      operationId: listNfipCommunityStatusBook
      summary: List NFIP community status book entries
      description: Current NFIP community status determining flood insurance availability and CRS discount rates.
      tags:
      - NFIP
      parameters:
      - $ref: '#/components/parameters/Top'
      - $ref: '#/components/parameters/Skip'
      - $ref: '#/components/parameters/Filter'
      responses:
        '200':
          description: NFIP community status book response
components:
  parameters:
    Top:
      name: $top
      in: query
      description: Maximum number of records to return (max 1000).
      schema:
        type: integer
        default: 1000
    Skip:
      name: $skip
      in: query
      description: Number of records to skip for pagination.
      schema:
        type: integer
        default: 0
    Filter:
      name: $filter
      in: query
      description: OData-style filter expression.
      schema:
        type: string