Skip to main content

FloodZoneResponse

Complete flood zone API response. Used by: GET/POST /v1/flood-zone

location_info objectnullable

Geocoded location information

formatted_addressFormatted Address (string)nullable
street_addressStreet Address (string)nullable
cityCity (string)nullable
stateState (string)nullable
state_codeState Code (string)nullable
countyCounty (string)nullable
postal_codePostal Code (string)nullable
latitudeLatitude (number)nullable
longitudeLongitude (number)nullable
geohash8Geohash8 (string)nullable
fema_flood_zone objectrequired

FEMA flood zone data

version_idVersion Id (string)nullable

DFIRM version identifier

fld_ar_idFld Ar Id (string)nullable

Flood area identifier

study_typStudy Typ (string)nullable

Study type

fld_zoneFld Zone (string)nullable

FEMA flood zone code (A, AE, VE, X, etc.)

sfha_tfSfha Tf (string)nullable

Special Flood Hazard Area flag (T/F)

static_bfeStatic Bfe (number)nullable

Base Flood Elevation

v_datumV Datum (string)nullable

Vertical datum

len_unitLen Unit (string)nullable

Length unit

source_citSource Cit (string)nullable

Source citation

user_labelUser Label (string)nullable

Human-readable risk label

Example: High Risk
annual_riskAnnual Risk (string)nullable

Annual flood risk percentage

Example: 1 %
sfhaSfha (boolean)nullable

In Special Flood Hazard Area (boolean)

FloodZoneResponse
{
"location_info": {
"formatted_address": "1234 Bayshore Dr, Miami Beach, FL 33139",
"latitude": 25.7617,
"longitude": -80.1918
},
"fema_flood_zone": {
"fld_zone": "AE",
"sfha": true,
"sfha_tf": "T",
"static_bfe": 8,
"user_label": "High Risk",
"annual_risk": "1 %",
"version_id": "12086C0306L",
"study_typ": "FE",
"v_datum": "NAVD88",
"len_unit": "Feet"
}
}