StormSurgeResponse
Complete storm surge API response. Used by: GET/POST /v1/storm-surge
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
storm_surge objectrequired
Storm surge risk data
in_surge_zoneIn Surge Zone (boolean)required
Whether the location is in a storm surge zone
zones object[]nullable
Storm surge data per hurricane category
Array [
categoryCategory (integer)required
Hurricane category (1-5)
Possible values: >= 1 and <= 5
depth_ftDepth Ft (integer)nullable
Storm surge depth in feet
depth_categoryDepth Category (string)required
Human-readable depth category
Example:
3-6 ftrisk_levelRisk Level (integer)required
Risk level (0=dry, 1-4=increasing risk)
Possible values: >= 0 and <= 4
]
highest_risk_levelHighest Risk Level (integer)nullable
Highest risk level across all categories
Possible values: >= 0 and <= 4
highest_risk_categoryHighest Risk Category (string)nullable
Depth category for highest risk
max_surge_depth_ftMax Surge Depth Ft (integer)nullable
Maximum surge depth in feet across all categories
StormSurgeResponse
{
"location_info": {
"formatted_address": "901 Ocean Dr, Naples, FL 34102",
"latitude": 26.142,
"longitude": -81.795
},
"storm_surge": {
"in_surge_zone": true,
"highest_risk_level": 3,
"highest_risk_category": "6-9 ft",
"max_surge_depth_ft": 9,
"zones": [
{
"category": 1,
"depth_ft": 3,
"depth_category": "1-3 ft",
"risk_level": 1
},
{
"category": 2,
"depth_ft": 5,
"depth_category": "3-6 ft",
"risk_level": 2
},
{
"category": 3,
"depth_ft": 9,
"depth_category": "6-9 ft",
"risk_level": 3
}
]
}
}