Smarty

US Address Enrichment API

This page describes how to retrieve data from various different datasets using the Smarty US Address Enrichment API.

Contents

  1. Overview
    1. Available datasets
  2. HTTP request
    1. URL composition
    2. Request methods
    3. Headers
    4. Input Fields
    5. Address search
  3. HTTP response
    1. Example results
  4. Supplementary materials
    1. Basic use cases
    2. GeoReference data field definitions
    3. Attribute groups
    4. Risk data field definitions
    5. SSL/TLS information
    6. Try the Address Enrichment API

Data sets

  • US Property Principal Data (property/principal)
    • Contains all property data attributes including tax assessor and recorder data
    • Recorder data will be last available financial transaction for the property
  • US Property Financial Data (property/financial)
    • Dataset that contains historical financial data attributes pertaining to the property and property owner.
  • US GeoReference Data (geo-reference, geo-reference/2010, geo-reference/2020)
    • The GeoReference Data product provides useful geographic data for geocoded addresses, such as census block id.
    • Request legacy data, such as the 2010 and 2020 census, by specifying a data subset of 2010 or 2020.
      For example: To return 2010 census data, specify geo-reference/2010.
    • To request the latest census information available, simply specify geo-reference with no trailing subset.
    • The census version will be returned in the data_set_version property in the response.
    • See GeoReference Field Definitions
  • US Risk data (risk)
    • The risk data product returns FEMA NRI (National Risk Index) data associated with an address or SmartyKey.
    • Fields with zero values, or near zero values (to the fourth decimal place) are not returned and are considered to not be significant.
    • For field definitions, see Risk Field Definitions below, or download the documentation file provided by FEMA.
    • For in-depth term descriptions, see the Data glossary on the FEMA website.
    • Also see technical documentation of NRI data.
  • US Secondary data (secondary, secondary/count)
    • The secondary data product returns all secondaries and aliases associated with a SmartyKey.
    • The SmartyKey can be that of the root address, any of the aliases, or any of the secondaries. Each will return the same related data.
    • The count subset only returns the number of secondaries associated with the SmartyKey. Detailed data is not returned.

HTTP request: URL composition

Proper URL construction is required for all API requests. Here are some example URLs:

https://us-enrichment.api.smarty.com/lookup/1000000/property/principal?auth-id=12345&auth-token=abcdef

https://us-enrichment.api.smarty.com/lookup/1000000/geo-reference?auth-id=12345&auth-token=abcdef

https://us-enrichment.api.smarty.com/lookup/1000000/risk?auth-id=12345&auth-token=abcdef

https://us-enrichment.api.smarty.com/lookup/1000000/secondary?auth-id=12345&auth-token=abcdef

https://us-enrichment.api.smarty.com/lookup/search/secondary?auth-id=12345&auth-token=abcdef&street=1400+Sandhill+Rd+Orem+UT
	

Here is a more granular examination of the examples above:

URL components Values Notes
Scheme https NOTE: Non-secure http requests are not supported
Hostname us-enrichment.api.smarty.com
Path /lookup
SmartyKey or search /1000000
/search
The unique id associated with the address you are looking for.
OR the word search if you are using any input fields for address searching.
Dataset /property/principal
/property/financial
/geo-reference
/geo-reference/2010
/geo-reference/2020
/risk
/secondary
/secondary/count
Specify one of the available Datasets
Query string ?auth-id=12345&auth-token=abcdef Authentication information and other input fields

For additional information about URLs, please read our article about URL components.

HTTP request: Supported methods

HTTP requests can be categorized according to their HTTP method. Most HTTP requests are defined using the GET method. We call these "get requests." Other common methods are PUT, POST, and DELETE.

The following methods are supported by this API:

  • GET (for sending a single input)

HTTP request: Headers

Header Description Example
Content-type The purpose of the Content-Type field is to describe the data contained in the body fully enough that the receiving user agent can pick an appropriate agent or mechanism to present the data to the user, or otherwise deal with the data in an appropriate manner. Content-type: application/json
ETag The ETag header provides the ability to check if a record has been updated since the last query.

Every query to the API will return an ETag header which represents a hash of the record in the response. This value may be stored and used in subsequent queries for that same record.

If the record data has NOT been updated since the last query, it will return a 304 (Not Modified) and the client will not be charged for the query. (The 304 response does not contain a body.)

If the record data HAS been updated, the latest version of the record will be returned along with a new ETag value.

Important: Only the latest ETag value is valid for each record. This feature is NOT designed to retrieve past record versions. Also note that the ETag value will change if ANY data in the record has been updated, regardless of which attributes are requested using the include and exclude parameters.
ETag: AUHQQBIPBQDAYAA

Input fields

Name Type Default value Description
include string (empty) List of attributes that are allowed to be included in the response. This list can include Group names and Attribute names separated by commas. All values must be lowercase.

If the record in the response does not have a value for that attribute, it will not be included in the response.
exclude string (empty) List of attributes that are not allowed to be included in the response. This list can include Group names and Attribute names separated by commas. All values must be lowercase.
Optional Address Search Fields IMPORTANT: When using any search field, you must specify the word search in place of the SmartyKey in the URL. See examples.
freeform string (empty) A full address.
street string (empty) The street line of the address, or the entire address.
You may also need to provide values for other component search fields.
city string (empty) The city name or a city, state, and ZIP Code combined.
You may also need to provide values for other component search fields.
state string (empty) The state name or abbreviation.
You may also need to provide values for other component search fields.
zipcode string (empty) The ZIP Code.
You may also need to provide values for other component search fields.

All input field parameters must be UTF-8 and then URL encoded.

HTTP response: Status codes and results

Responses will have a status header with a numeric value. This value is what you should check for when writing code to parse the response. The only response body that should be read and parsed is a 200 response.

Status code Response and explanation
200 OK (success!): The response body is a JSON object containing metadata about the results and zero or one addresses from the input provided with the request. See the annotated example below for details. An ETag header value will also be returned which represents a hash of the current record. (See ETag header in the request.)
304 Not modified: The requested ETag header represents the latest data available.
400 Bad request (malformed payload): The request body was blank or otherwise malformed.
401 Unauthorized: The credentials were provided incorrectly or did not match any existing, active credentials. Additionally, a unique situation can trigger a 401 error when embedded keys are used server-side from a cloud environment or VPN.
402 Payment required: There is no active subscription for the account associated with the credentials submitted with the request.
413 Request entity too large: The request body was larger than 64 Kilobytes.
422 Unprocessable content: Some parameter values are not correct. Detailed messages will describe the problem.
429 Too many requests: We restrict the number of requests coming from a given source over too short of a time.

Example response - property/principal Dataset

[
	{
		"smarty_key": "4888552154",
		"data_set_name": "property",
		"data_subset_name": "principal",
		"attributes": {
			"1st_floor_sqft": "2302",
			"2nd_floor_sqft": "0",
			"acres": "0.3289945",
			"address_info_privacy": "",
			"air_conditioner": "yes",
			"arbor_pergola": "unknown",
			"assessed_improvement_percent": "0.00",
			"assessed_improvement_value": "0",
			"assessed_land_value": "0",
			"assessed_value": "399960",
			"assessor_last_update": "2023-01-05",
			"assessor_taxroll_update": "2022-01-01",
			"attic_area": "405",
			...
		}
	}
]

Example response - property/financial Dataset

[
	{
		"smarty_key": "9856148841",
		"data_set_name": "property",
		"data_subset_name": "financial",
		"attributes": {
			"assessor_taxroll_update": "2022-01-01",
			"attic_area": "405",
			"recorder": [
				{
					"recording_date": "2022-01-01",
					"instrument_date": "2022-01-01",
					"sale_price": "1",
					...
				},
				{
					"recording_date": "2023-01-01",
					"instrument_date": "2023-01-01",
					"sale_price": "2",
					...
				}
			],
			...
		}
	}
]

Example response - geo-reference/2020 dataset

[
	{
		"smarty_key": "1601354568",
		"data_set_name": "geo-reference",
		"data_set_version": "census-2020",
		"attributes": {
			"census_block": {
				"accuracy": "block",
				"geoid": "530050109014000"
			},
			"census_county_division": {
				"accuracy": "exact",
				"code": "5300592768",
				"name": "Richland-Kennewick"
			},
			"census_tract": {
				"code": "0109.01"
			},
			"core_based_stat_area": {
				"code": "28420",
				"name": "Kennewick-Richland, WA"
			},
			"place": {
				"accuracy": "exact",
				"code": "5335275",
				"name": "Kennewick",
				"type": "incorporated"
			}
		}
	}
]

Example response - risk dataset

[
	{
		"smarty_key": "1487543",
		"data_set_name": "risk",
		"attributes": {
			"AGRIVALUE": "29035",
			"ALR_NPCTL": "90.3469",
			"ALR_VALA": "0.0111",
			"ALR_VALB": "0.0030",
			"ALR_VRA_NPCTL": "86.3887",
			"AREA": "5.6860",
			"BUILDVALUE": "596057081",
			"CFLD_EALR": "No Expected Annual Losses",
			"CFLD_HLRB": "0.0001",
			"CFLD_HLRR": "No Rating",
			"CFLD_RISKR": "No Rating",
			"COUNTY": "Mobile",
			"COUNTYFIPS": "097",
			"COUNTYTYPE": "County",
			"CRF_VALUE": "0.9961",
			"CWAV_EALR": "No Expected Annual Losses",
			"CWAV_EXP_AREA": "5.6860",
			"CWAV_HLRA": "0.0084",
			...  (465 total data fields are possible)
		}
	}
]

Example response - secondary dataset

[
	{
		"smarty_key": "1106658436",
		"root_address": {
			"secondary_count": 3,
			"smarty_key": "1106658436",
			"primary_number": "11401",
			"street_name": "Dr Martin Luther King Jr",
			"street_suffix": "St",
			"street_postdirection": "N",
			"city_name": "Saint Petersburg",
			"state_abbreviation": "FL",
			"zipcode": "33716",
			"plus4_code": "2345"
		},
		"aliases": [
			{
				"smarty_key": "1106658436",
				"primary_number": "11401",
				"street_name": "9th",
				"street_suffix": "St",
				"street_postdirection": "N",
				"city_name": "Saint Petersburg",
				"state_abbreviation": "FL",
				"zipcode": "33716",
				"plus4_code": "2345"
			}
		],
		"secondaries": [
			{
				"smarty_key": "347247266",
				"secondary_designator": "Apt",
				"secondary_number": "101",
				"plus4_code": "2310"
			},
			{
				"smarty_key": "1301723551",
				"secondary_designator": "Apt",
				"secondary_number": "102",
				"plus4_code": "2310"
			},
			{
				"smarty_key": "538303441",
				"secondary_designator": "Apt",
				"secondary_number": "103",
				"plus4_code": "2313"
			}
		]
	}
]

Example response - secondary/count dataset

[
	{
		"smarty_key": "1166392406",
		"count": 12
	}
]

To perform an address search instead of providing a SmartyKey, you may use the search input fields. Note that you replace the SmartyKey value with the string search in the URL. You will also need a subscription that allows Address Searching.

Example address search requests:

https://us-enrichment.api.smarty.com/lookup/search/property/principal?auth-id=12345&auth-token=abcdef&freeform=1400+Sandhill+Rd+Orem+UT+84058

https://us-enrichment.api.smarty.com/lookup/search/property/principal?auth-id=12345&auth-token=abcdef&street=1400+Sandhill+Rd&city=Orem+UT+84058

https://us-enrichment.api.smarty.com/lookup/search/geo-reference?auth-id=12345&auth-token=abcdef&street=1400+Sandhill+Rd&city=Orem&state=UT&zipcode=84058
	

This example address search response shows the search result in matched_address. If no match is found, an empty result will be returned similar to when an invalid SmartyKey is provided during a standard lookup. If multiple matches are found because the input was ambiguous, the SmartyKey from the first result will be used.

[
	{
		"smarty_key": "2127882360",
		"data_set_name": "property",
		"data_subset_name": "principal",
		"matched_address": {
			"street": "1400 Sandhill Rd",
			"city": "Orem",
			"state": "UT",
			"zipcode": "84058-7310"
		},
		"attributes": {
			"acres": "7.0159998",
			"air_conditioner": "yes",
			"assessed_value": "14308800"
	}
	}
]

Basic use cases

HTTP GET - SmartyKey valid - Property data exists

Precondition SmartyKey is valid.
Property data exists.
Action https://us-enrichment.api.smarty.com/lookup/111111/property/principal
Result All results for specific SmartyKey returned.

HTTP GET - SmartyKey Has No Property Data

Precondition SmartyKey has no property data
Action https://us-enrichment.api.smarty.com/lookup/111111/property/principal
Result Empty results returned.

HTTP GET - Use include and exclude Parameters Containing a Group in Principal Data

Precondition SmartyKey is valid.
Property data exists.
Action https://us-enrichment.api.smarty.com/lookup/111111/property/principal?include=group_structural&exclude=attic_flag,boat_lift
Result Available data for that SmartyKey within the attribute group group_structural, excluding the attic_flag and boat_lift attributes.

HTTP GET - SmartyKey valid - Property financial data exists

Precondition SmartyKey is valid.
Property data exists.
Action https://us-enrichment.api.smarty.com/lookup/111111/property/financial
Result All results for specific SmartyKey returned.

HTTP GET - Use of ETag Header Where Data Has Not Been Updated

Precondition SmartyKey is valid.
Property data exists.
An ETag value from a previous query and the data has not changed.
Action Header: ETag: AABBCCDD
https://us-enrichment.api.smarty.com/lookup/111111/property/financial
Result HTTP 304 indicating that the data has not changed. There was no charge for the lookup.

HTTP GET - Use of ETag Header Where Data Has Changed

Precondition SmartyKey is valid.
Property data exists.
An ETag value from a previous query and the data has changed.
Action Header: ETag: AABBCCDD
https://us-enrichment.api.smarty.com/lookup/111111/property/financial
Result All results for specific SmartyKey returned. A new ETag value is also returned.

GeoReference field definitions (For GeoReference datasets)

Category Data element Definition
census_block An id of up to 15 characters that identifies a geographical area for statistical analysis.
accuracy Represents the accuracy of the geocode associated with the SmartyKey which was used to find the block. Values are block, tract, or county.
geoid The census geoid can have different meanings based on the accuracy field.
  • If geocode accuracy is parcel or rooftop, the id is the 15 character block id.
  • If geocode accuracy is zip9, the id is the census tract id. (first 11 digits of block id)
  • If geocode accuracy is less than zip9, the id is the county FIPS. (first 5 digits of block id)
census_county_division The county subdivision identifier and name (equivalent to townships).
accuracy Represents the accuracy of the geocode associated with the SmartyKey. Less than Zip9 accuracy will be inferred. Otherwise, it will be exact.
code The 10-digit census id code of the CCD.
name The name of the census county division.
census_tract Geographic entities within counties (or the statistical equivalent of counties).
code Census tracts within a county are identified by a 4-digit basic code between 0001 and 9999, and may have a 2-digit suffix ranging from .01 to .98; (e.g. 6059.02)
core_based_stat_area Refers collectively to metropolitan statistical areas and micropolitan statistical areas. CBSAs consist of the county or counties (or equivalent entities) associated with at least one core (urban area) with a population of at least 10,000, plus adjacent counties having a high degree of social and economic integration with the core as measured through commuting ties.
code A 5-digit unique id of the CBSA (e.g. 39340)
name The name of the CBSA (e.g. Provo-Orem, UT)
place The Bureau of the Census defines a place as a concentration of population. It consists of a geographical boundary.
accuracy Represents the accuracy of the geocode associated with the SmartyKey. Less than Zip9 accuracy will be inferred. Otherwise, it will be exact.
code A 7-digit code that identifies the place. The first 2 digits identify the state. The last 5 identify the place within the state.
name The name of the place boundary.
type Indicates if the Census Place is incorporated or unincorporated.

Attribute groups (For US property principal/financial datasets)

The following attribute groups are supported in the include and exclude input parameters when performing a request for US Property records.

Group name Description Attributes included
group_financial Financial attributes in the Principal Dataset records assessed_improvement_percent
assessed_improvement_value
assessed_land_value
assessed_value
assessor_last_update
assessor_taxroll_update
code_title_company
company_flag
contact_city
contact_crrt
contact_full_address
contact_house_number
contact_mail_info_format
contact_mailing_county
contact_mailing_fips
contact_post_direction
contact_pre_direction
contact_state
contact_street_name
contact_suffix
contact_unit_designator
contact_value
contact_zip
contact_zip4
deed_ document_page
deed_document_book
deed_document_number
deed_owner_first_name
deed_owner_first_name2
deed_owner_first_name3
deed_owner_first_name4
deed_owner_full_name
deed_owner_full_name2
deed_owner_full_name3
deed_owner_full_name4
deed_owner_last_name
deed_owner_last_name2
deed_owner_last_name3
deed_owner_last_name4
deed_owner_middle_name
deed_owner_middle_name2
deed_owner_middle_name3
deed_owner_middle_name4
deed_owner_suffix
deed_owner_suffix2
deed_owner_suffix3
deed_owner_suffix4
deed_sale_date
deed_sale_price
deed_transaction_id disabled_tax_exemption
first_name
first_name_2
first_name_3
first_name_4
homeowner_tax_exemption
instrument_date
interest_rate
interest_rate_type_2
last_name
last_name_2
last_name_3
last_name_4
lender_address
lender_address_2
lender_city
lender_city_2
lender_code_2
lender_first_name
lender_first_name_2
lender_last_name
lender_last_name_2
lender_name
lender_name_2
lender_seller_carry_back
lender_seller_carry_back_2
lender_state
lender_state_2
lender_zip
lender_zip_2
lender_zip_extended
lender_zip_extended_2
loan_amount
market_improvement_percent
market_improvement_value
market_land_value
market_value_year
middle_name
middle_name_2
middle_name_3
middle_name_4
mortgage_amount_2
mortgage_due_date
mortgage_due_date_2
mortgage_interest_type
mortgage_lender_code
mortgage_start_date
mortgage_start_date_2
mortgage_term
mortgage_term_2
mortgage_term_type
mortgage_term_type_2
mortgage_type
mortgage_type_2
mortgate_rate_2
multi_parcel_flag
name_title_company
other_tax_exemption
owner_full_name
owner_full_name_2
owner_full_name_3
owner_full_name_4
owner_occupancy_status
ownership_transfer_date
ownership_transfer_doc_number
ownership_transfer_transaction_id
ownership_type
ownership_type_2
ownership_vesting_relation_code
previous_assessed_value
prior_sale_amount
prior_sale_date
sale_amount
sale_date
sale_price
senior_tax_exemption
suffix
suffix_2
suffix_3
suffix_4
tax_assess_year
tax_billed_amount
tax_delinquent_year
tax_fiscal_year
tax_rate_area
total_market_value
trust_description
veteran_tax_exemption
widow_tax_exemption
group_location Location attributes in the Principal Dataset records block1
block2
carrier_route_code
cbsa_code
cbsa_name
census_block
census_block_group
census_fips_place_code
census_tract
city
combined_statistical_area
congressional_district
elevation_feet fips_code
geo_quality
house_number
land_use_code
land_use_group
land_use_standard
latitude
legal_description
legal_unit
longitude
lot_1
lot_2
lot_3
metro_division
minor_civil_division_code
minor_civil_division_name
msa_code
msa_name
neighborhood_code
parcel_account_number
parcel_map_book
parcel_map_page
parcel_number_alternate
parcel_number_formatted
parcel_number_previous
parcel_number_year_added
parcel_number_year_change
parcel_raw_number
phase_name
post_direction
pre_direction
property_address_full
quarter
quarter_quarter
range
section
situs_county
situs_state
state
street_name
street_suffix
subdivision
tax_jurisdiction
township
tract_number
unit_designator
unit_value
zip_4
zipcode
zoning
group_structural Structural attributes in the Principal Dataset records 1st_floor_sqft
2nd_floor_sqft
acres
air_conditioner
arbor_pergola
attic_area
attic_flag
balcony
balcony_area
basement_sqft
basement_sqft_finished
basement_sqft_unfinished
bath_house
bath_house_sqft
bathrooms_partial
bathrooms_total
bedrooms
boat_access
boat_house
boat_house_sqft
boat_lift
bonus_room
breakfast_nook
breezeway
building_definition_code
building_sqft
cabin
cabin_sqft
canopy
canopy_sqft
carport
carport_sqft
cellar
central_vacuum
community_rec
construction_type
courtyard
courtyard_area
deck
deck_area
depth_linear_footage
driveway_sqft
driveway_type
effective_year_built elevator
equestrian_arena
escalator
exercise_room
exterior_walls
family_room
fence
fence_area
fire_resistance_code
fire_sprinklers_flag
fireplace
fireplace_number
flooring
foundation
game_room
garage
garage_sqft
gazebo
gazebo_sqft
golf_course
grainery
grainery_sqft
great_room
greenhouse
greenhouse_sqft
gross_sqft
guesthouse
guesthouse_sqft
handicap_accessibility
heat
heat_fuel_type
hobby_room
intercom_system
interior_structure
kennel
kennel_sqft
laundry
lean_to
lean_to_sqft
loading_platform
loading_platform_sqft
lot_sqft
media_room
milkhouse
milkhouse_sqft
mobile_home_hookup
mud_room
number_of_buildings
office
office_sqft
overhead_door
parcel_shell_record
parking_spaces
patio_area
plumbing_fixtures_count
pole_struct
pole_struct_sqft
pond
pool
pool_area
poolhouse
poolhouse_sqft
porch
porch_area
poultry_house
poultry_house_sqft
publication_date
quonset
quonset_sqft
roof_cover
roof_frame
rooms
rv_parking
safe_room
sauna
security_alarm
sewer_type
shed
shed_sqft
silo
silo_sqft
sitting_room
sound_system
sports_court
sprinklers
stable
stable_sqft
storage_building
storage_building_sqft
stories_number
storm_shelter
storm_shutter
structure_style
study
sunroom
tennis_court
topography_code
unit_count
upper_floors_sqft
utility
utility_building
utility_building_sqft
utility_sqft
view_description
water_feature
water_service_type
wet_bar
width_linear_footage
wine_cellar
year_built

Risk Field Definitions (For risk dataset)

The risk data fields are based on the FEMA National Risk Index (NRI) data definitions. Fields with zero values, or near zero values (to the fourth decimal place) are not returned and are considered to not be significant.

For in-depth term descriptions, see the Data glossary on the FEMA website.

Field name Description
AGRIVALUEAgriculture Value ($)
ALR_NPCTLExpected Annual Loss Rate - National Percentile - Composite
ALR_VALAExpected Annual Loss Rate - Agriculture - Composite
ALR_VALBExpected Annual Loss Rate - Building - Composite
ALR_VALPExpected Annual Loss Rate - Population - Composite
ALR_VRA_NPCTLSocial Vulnerability and Community Resilience Adjusted Expected Annual Loss Rate - National Percentile - Composite
AREAArea (sq mi)
AVLN_AFREQAvalanche - Annualized Frequency
AVLN_ALRBAvalanche - Expected Annual Loss Rate - Building
AVLN_ALRPAvalanche - Expected Annual Loss Rate - Population
AVLN_ALR_NPCTLAvalanche - Expected Annual Loss Rate - National Percentile
AVLN_EALBAvalanche - Expected Annual Loss - Building Value
AVLN_EALPAvalanche - Expected Annual Loss - Population
AVLN_EALPEAvalanche - Expected Annual Loss - Population Equivalence
AVLN_EALRAvalanche - Expected Annual Loss Rating
AVLN_EALSAvalanche - Expected Annual Loss Score
AVLN_EALTAvalanche - Expected Annual Loss - Total
AVLN_EVNTSAvalanche - Number of Events
AVLN_EXPBAvalanche - Exposure - Building Value
AVLN_EXPPAvalanche - Exposure - Population
AVLN_EXPPEAvalanche - Exposure - Population Equivalence
AVLN_EXPTAvalanche - Exposure - Total
AVLN_EXP_AREAAvalanche - Exposure - Impacted Area (sq mi)
AVLN_HLRBAvalanche - Historic Loss Ratio - Buildings
AVLN_HLRPAvalanche - Historic Loss Ratio - Population
AVLN_HLRRAvalanche - Historic Loss Ratio - Total Rating
AVLN_RISKRAvalanche - Hazard Type Risk Index Rating
AVLN_RISKSAvalanche - Hazard Type Risk Index Score
AVLN_RISKVAvalanche - Hazard Type Risk Index Value
BUILDVALUEBuilding Value ($)
CFLD_AFREQCoastal Flooding - Annualized Frequency
CFLD_ALRBCoastal Flooding - Expected Annual Loss Rate - Building
CFLD_ALRPCoastal Flooding - Expected Annual Loss Rate - Population
CFLD_ALR_NPCTLCoastal Flooding - Expected Annual Loss Rate - National Percentile
CFLD_EALBCoastal Flooding - Expected Annual Loss - Building Value
CFLD_EALPCoastal Flooding - Expected Annual Loss - Population
CFLD_EALPECoastal Flooding - Expected Annual Loss - Population Equivalence
CFLD_EALRCoastal Flooding - Expected Annual Loss Rating
CFLD_EALSCoastal Flooding - Expected Annual Loss Score
CFLD_EALTCoastal Flooding - Expected Annual Loss - Total
CFLD_EVNTSCoastal Flooding - Number of Events
CFLD_EXPBCoastal Flooding - Exposure - Building Value
CFLD_EXPPCoastal Flooding - Exposure - Population
CFLD_EXPPECoastal Flooding - Exposure - Population Equivalence
CFLD_EXPTCoastal Flooding - Exposure - Total
CFLD_EXP_AREACoastal Flooding - Exposure - Impacted Area (sq mi)
CFLD_HLRBCoastal Flooding - Historic Loss Ratio - Buildings
CFLD_HLRPCoastal Flooding - Historic Loss Ratio - Population
CFLD_HLRRCoastal Flooding - Historic Loss Ratio - Total Rating
CFLD_RISKRCoastal Flooding - Hazard Type Risk Index Rating
CFLD_RISKSCoastal Flooding - Hazard Type Risk Index Score
CFLD_RISKVCoastal Flooding - Hazard Type Risk Index Value
COUNTYCounty Name
COUNTYFIPSCounty FIPS Code
COUNTYTYPECounty Type
CRF_VALUECommunity Risk Factor - Value
CWAV_AFREQCold Wave - Annualized Frequency
CWAV_ALRACold Wave - Expected Annual Loss Rate - Agriculture
CWAV_ALRBCold Wave - Expected Annual Loss Rate - Building
CWAV_ALRPCold Wave - Expected Annual Loss Rate - Population
CWAV_ALR_NPCTLCold Wave - Expected Annual Loss Rate - National Percentile
CWAV_EALACold Wave - Expected Annual Loss - Agriculture Value
CWAV_EALBCold Wave - Expected Annual Loss - Building Value
CWAV_EALPCold Wave - Expected Annual Loss - Population
CWAV_EALPECold Wave - Expected Annual Loss - Population Equivalence
CWAV_EALRCold Wave - Expected Annual Loss Rating
CWAV_EALSCold Wave - Expected Annual Loss Score
CWAV_EALTCold Wave - Expected Annual Loss - Total
CWAV_EVNTSCold Wave - Number of Events
CWAV_EXPACold Wave - Exposure - Agriculture Value
CWAV_EXPBCold Wave - Exposure - Building Value
CWAV_EXPPCold Wave - Exposure - Population
CWAV_EXPPECold Wave - Exposure - Population Equivalence
CWAV_EXPTCold Wave - Exposure - Total
CWAV_EXP_AREACold Wave - Exposure - Impacted Area (sq mi)
CWAV_HLRACold Wave - Historic Loss Ratio - Agriculture
CWAV_HLRBCold Wave - Historic Loss Ratio - Buildings
CWAV_HLRPCold Wave - Historic Loss Ratio - Population
CWAV_HLRRCold Wave - Historic Loss Ratio - Total Rating
CWAV_RISKRCold Wave - Hazard Type Risk Index Rating
CWAV_RISKSCold Wave - Hazard Type Risk Index Score
CWAV_RISKVCold Wave - Hazard Type Risk Index Value
DRGT_AFREQDrought - Annualized Frequency
DRGT_ALRADrought - Expected Annual Loss Rate - Agriculture
DRGT_ALR_NPCTLDrought - Expected Annual Loss Rate - National Percentile
DRGT_EALADrought - Expected Annual Loss - Agriculture Value
DRGT_EALRDrought - Expected Annual Loss Rating
DRGT_EALSDrought - Expected Annual Loss Score
DRGT_EALTDrought - Expected Annual Loss - Total
DRGT_EVNTSDrought - Number of Events
DRGT_EXPADrought - Exposure - Agriculture Value
DRGT_EXPTDrought - Exposure - Total
DRGT_EXP_AREADrought - Exposure - Impacted Area (sq mi)
DRGT_HLRADrought - Historic Loss Ratio - Agriculture
DRGT_HLRRDrought - Historic Loss Ratio - Total Rating
DRGT_RISKRDrought - Hazard Type Risk Index Rating
DRGT_RISKSDrought - Hazard Type Risk Index Score
DRGT_RISKVDrought - Hazard Type Risk Index Value
EAL_RATNGExpected Annual Loss - Rating - Composite
EAL_SCOREExpected Annual Loss - Score - Composite
EAL_SPCTLExpected Annual Loss - State Percentile - Composite
EAL_VALAExpected Annual Loss - Agriculture Value - Composite
EAL_VALBExpected Annual Loss - Building Value - Composite
EAL_VALPExpected Annual Loss - Population - Composite
EAL_VALPEExpected Annual Loss - Population Equivalence - Composite
EAL_VALTExpected Annual Loss - Total - Composite
ERQK_AFREQEarthquake - Annualized Frequency
ERQK_ALRBEarthquake - Expected Annual Loss Rate - Building
ERQK_ALRPEarthquake - Expected Annual Loss Rate - Population
ERQK_ALR_NPCTLEarthquake - Expected Annual Loss Rate - National Percentile
ERQK_EALBEarthquake - Expected Annual Loss - Building Value
ERQK_EALPEarthquake - Expected Annual Loss - Population
ERQK_EALPEEarthquake - Expected Annual Loss - Population Equivalence
ERQK_EALREarthquake - Expected Annual Loss Rating
ERQK_EALSEarthquake - Expected Annual Loss Score
ERQK_EALTEarthquake - Expected Annual Loss - Total
ERQK_EVNTSEarthquake - Number of Events
ERQK_EXPBEarthquake - Exposure - Building Value
ERQK_EXPPEarthquake - Exposure - Population
ERQK_EXPPEEarthquake - Exposure - Population Equivalence
ERQK_EXPTEarthquake - Exposure - Total
ERQK_EXP_AREAEarthquake - Exposure - Impacted Area (sq mi)
ERQK_HLRBEarthquake - Historic Loss Ratio - Buildings
ERQK_HLRPEarthquake - Historic Loss Ratio - Population
ERQK_HLRREarthquake - Historic Loss Ratio - Total Rating
ERQK_RISKREarthquake - Hazard Type Risk Index Rating
ERQK_RISKSEarthquake - Hazard Type Risk Index Score
ERQK_RISKVEarthquake - Hazard Type Risk Index Value
HAIL_AFREQHail - Annualized Frequency
HAIL_ALRAHail - Expected Annual Loss Rate - Agriculture
HAIL_ALRBHail - Expected Annual Loss Rate - Building
HAIL_ALRPHail - Expected Annual Loss Rate - Population
HAIL_ALR_NPCTLHail - Expected Annual Loss Rate - National Percentile
HAIL_EALAHail - Expected Annual Loss - Agriculture Value
HAIL_EALBHail - Expected Annual Loss - Building Value
HAIL_EALPHail - Expected Annual Loss - Population
HAIL_EALPEHail - Expected Annual Loss - Population Equivalence
HAIL_EALRHail - Expected Annual Loss Rating
HAIL_EALSHail - Expected Annual Loss Score
HAIL_EALTHail - Expected Annual Loss - Total
HAIL_EVNTSHail - Number of Events
HAIL_EXPAHail - Exposure - Agriculture Value
HAIL_EXPBHail - Exposure - Building Value
HAIL_EXPPHail - Exposure - Population
HAIL_EXPPEHail - Exposure - Population Equivalence
HAIL_EXPTHail - Exposure - Total
HAIL_EXP_AREAHail - Exposure - Impacted Area (sq mi)
HAIL_HLRAHail - Historic Loss Ratio - Agriculture
HAIL_HLRBHail - Historic Loss Ratio - Buildings
HAIL_HLRPHail - Historic Loss Ratio - Population
HAIL_HLRRHail - Historic Loss Ratio - Total Rating
HAIL_RISKRHail - Hazard Type Risk Index Rating
HAIL_RISKSHail - Hazard Type Risk Index Score
HAIL_RISKVHail - Hazard Type Risk Index Value
HRCN_AFREQHurricane - Annualized Frequency
HRCN_ALRAHurricane - Expected Annual Loss Rate - Agriculture
HRCN_ALRBHurricane - Expected Annual Loss Rate - Building
HRCN_ALRPHurricane - Expected Annual Loss Rate - Population
HRCN_ALR_NPCTLHurricane - Expected Annual Loss Rate - National Percentile
HRCN_EALAHurricane - Expected Annual Loss - Agriculture Value
HRCN_EALBHurricane - Expected Annual Loss - Building Value
HRCN_EALPHurricane - Expected Annual Loss - Population
HRCN_EALPEHurricane - Expected Annual Loss - Population Equivalence
HRCN_EALRHurricane - Expected Annual Loss Rating
HRCN_EALSHurricane - Expected Annual Loss Score
HRCN_EALTHurricane - Expected Annual Loss - Total
HRCN_EVNTSHurricane - Number of Events
HRCN_EXPAHurricane - Exposure - Agriculture Value
HRCN_EXPBHurricane - Exposure - Building Value
HRCN_EXPPHurricane - Exposure - Population
HRCN_EXPPEHurricane - Exposure - Population Equivalence
HRCN_EXPTHurricane - Exposure - Total
HRCN_EXP_AREAHurricane - Exposure - Impacted Area (sq mi)
HRCN_HLRAHurricane - Historic Loss Ratio - Agriculture
HRCN_HLRBHurricane - Historic Loss Ratio - Buildings
HRCN_HLRPHurricane - Historic Loss Ratio - Population
HRCN_HLRRHurricane - Historic Loss Ratio - Total Rating
HRCN_RISKRHurricane - Hazard Type Risk Index Rating
HRCN_RISKSHurricane - Hazard Type Risk Index Score
HRCN_RISKVHurricane - Hazard Type Risk Index Value
HWAV_AFREQHeat Wave - Annualized Frequency
HWAV_ALRAHeat Wave - Expected Annual Loss Rate - Agriculture
HWAV_ALRBHeat Wave - Expected Annual Loss Rate - Building
HWAV_ALRPHeat Wave - Expected Annual Loss Rate - Population
HWAV_ALR_NPCTLHeat Wave - Expected Annual Loss Rate - National Percentile
HWAV_EALAHeat Wave - Expected Annual Loss - Agriculture Value
HWAV_EALBHeat Wave - Expected Annual Loss - Building Value
HWAV_EALPHeat Wave - Expected Annual Loss - Population
HWAV_EALPEHeat Wave - Expected Annual Loss - Population Equivalence
HWAV_EALRHeat Wave - Expected Annual Loss Rating
HWAV_EALSHeat Wave - Expected Annual Loss Score
HWAV_EALTHeat Wave - Expected Annual Loss - Total
HWAV_EVNTSHeat Wave - Number of Events
HWAV_EXPAHeat Wave - Exposure - Agriculture Value
HWAV_EXPBHeat Wave - Exposure - Building Value
HWAV_EXPPHeat Wave - Exposure - Population
HWAV_EXPPEHeat Wave - Exposure - Population Equivalence
HWAV_EXPTHeat Wave - Exposure - Total
HWAV_EXP_AREAHeat Wave - Exposure - Impacted Area (sq mi)
HWAV_HLRAHeat Wave - Historic Loss Ratio - Agriculture
HWAV_HLRBHeat Wave - Historic Loss Ratio - Buildings
HWAV_HLRPHeat Wave - Historic Loss Ratio - Population
HWAV_HLRRHeat Wave - Historic Loss Ratio - Total Rating
HWAV_RISKRHeat Wave - Hazard Type Risk Index Rating
HWAV_RISKSHeat Wave - Hazard Type Risk Index Score
HWAV_RISKVHeat Wave - Hazard Type Risk Index Value
ISTM_AFREQIce Storm - Annualized Frequency
ISTM_ALRBIce Storm - Expected Annual Loss Rate - Building
ISTM_ALRPIce Storm - Expected Annual Loss Rate - Population
ISTM_ALR_NPCTLIce Storm - Expected Annual Loss Rate - National Percentile
ISTM_EALBIce Storm - Expected Annual Loss - Building Value
ISTM_EALPIce Storm - Expected Annual Loss - Population
ISTM_EALPEIce Storm - Expected Annual Loss - Population Equivalence
ISTM_EALRIce Storm - Expected Annual Loss Rating
ISTM_EALSIce Storm - Expected Annual Loss Score
ISTM_EALTIce Storm - Expected Annual Loss - Total
ISTM_EVNTSIce Storm - Number of Events
ISTM_EXPBIce Storm - Exposure - Building Value
ISTM_EXPPIce Storm - Exposure - Population
ISTM_EXPPEIce Storm - Exposure - Population Equivalence
ISTM_EXPTIce Storm - Exposure - Total
ISTM_EXP_AREAIce Storm - Exposure - Impacted Area (sq mi)
ISTM_HLRBIce Storm - Historic Loss Ratio - Buildings
ISTM_HLRPIce Storm - Historic Loss Ratio - Population
ISTM_HLRRIce Storm - Historic Loss Ratio - Total Rating
ISTM_RISKRIce Storm - Hazard Type Risk Index Rating
ISTM_RISKSIce Storm - Hazard Type Risk Index Score
ISTM_RISKVIce Storm - Hazard Type Risk Index Value
LNDS_AFREQLandslide - Annualized Frequency
LNDS_ALRBLandslide - Expected Annual Loss Rate - Building
LNDS_ALRPLandslide - Expected Annual Loss Rate - Population
LNDS_ALR_NPCTLLandslide - Expected Annual Loss Rate - National Percentile
LNDS_EALBLandslide - Expected Annual Loss - Building Value
LNDS_EALPLandslide - Expected Annual Loss - Population
LNDS_EALPELandslide - Expected Annual Loss - Population Equivalence
LNDS_EALRLandslide - Expected Annual Loss Rating
LNDS_EALSLandslide - Expected Annual Loss Score
LNDS_EALTLandslide - Expected Annual Loss - Total
LNDS_EVNTSLandslide - Number of Events
LNDS_EXPBLandslide - Exposure - Building Value
LNDS_EXPPLandslide - Exposure - Population
LNDS_EXPPELandslide - Exposure - Population Equivalence
LNDS_EXPTLandslide - Exposure - Total
LNDS_EXP_AREALandslide - Exposure - Impacted Area (sq mi)
LNDS_HLRBLandslide - Historic Loss Ratio - Buildings
LNDS_HLRPLandslide - Historic Loss Ratio - Population
LNDS_HLRRLandslide - Historic Loss Ratio - Total Rating
LNDS_RISKRLandslide - Hazard Type Risk Index Rating
LNDS_RISKSLandslide - Hazard Type Risk Index Score
LNDS_RISKVLandslide - Hazard Type Risk Index Value
LTNG_AFREQLightning - Annualized Frequency
LTNG_ALRBLightning - Expected Annual Loss Rate - Building
LTNG_ALRPLightning - Expected Annual Loss Rate - Population
LTNG_ALR_NPCTLLightning - Expected Annual Loss Rate - National Percentile
LTNG_EALBLightning - Expected Annual Loss - Building Value
LTNG_EALPLightning - Expected Annual Loss - Population
LTNG_EALPELightning - Expected Annual Loss - Population Equivalence
LTNG_EALRLightning - Expected Annual Loss Rating
LTNG_EALSLightning - Expected Annual Loss Score
LTNG_EALTLightning - Expected Annual Loss - Total
LTNG_EVNTSLightning - Number of Events
LTNG_EXPBLightning - Exposure - Building Value
LTNG_EXPPLightning - Exposure - Population
LTNG_EXPPELightning - Exposure - Population Equivalence
LTNG_EXPTLightning - Exposure - Total
LTNG_EXP_AREALightning - Exposure - Impacted Area (sq mi)
LTNG_HLRBLightning - Historic Loss Ratio - Buildings
LTNG_HLRPLightning - Historic Loss Ratio - Population
LTNG_HLRRLightning - Historic Loss Ratio - Total Rating
LTNG_RISKRLightning - Hazard Type Risk Index Rating
LTNG_RISKSLightning - Hazard Type Risk Index Score
LTNG_RISKVLightning - Hazard Type Risk Index Value
NRI_VERNational Risk Index Version
POPULATIONPopulation (2020)
RESL_RATNGCommunity Resilience - Rating
RESL_SCORECommunity Resilience - Score
RESL_SPCTLCommunity Resilience - State Percentile
RESL_VALUECommunity Resilience - Value
RFLD_AFREQRiverine Flooding - Annualized Frequency
RFLD_ALRARiverine Flooding - Expected Annual Loss Rate - Agriculture
RFLD_ALRBRiverine Flooding - Expected Annual Loss Rate - Building
RFLD_ALRPRiverine Flooding - Expected Annual Loss Rate - Population
RFLD_ALR_NPCTLRiverine Flooding - Expected Annual Loss Rate - National Percentile
RFLD_EALARiverine Flooding - Expected Annual Loss - Agriculture Value
RFLD_EALBRiverine Flooding - Expected Annual Loss - Building Value
RFLD_EALPRiverine Flooding - Expected Annual Loss - Population
RFLD_EALPERiverine Flooding - Expected Annual Loss - Population Equivalence
RFLD_EALRRiverine Flooding - Expected Annual Loss Rating
RFLD_EALSRiverine Flooding - Expected Annual Loss Score
RFLD_EALTRiverine Flooding - Expected Annual Loss - Total
RFLD_EVNTSRiverine Flooding - Number of Events
RFLD_EXPARiverine Flooding - Exposure - Agriculture Value
RFLD_EXPBRiverine Flooding - Exposure - Building Value
RFLD_EXPPRiverine Flooding - Exposure - Population
RFLD_EXPPERiverine Flooding - Exposure - Population Equivalence
RFLD_EXPTRiverine Flooding - Exposure - Total
RFLD_EXP_AREARiverine Flooding - Exposure - Impacted Area (sq mi)
RFLD_HLRARiverine Flooding - Historic Loss Ratio - Agriculture
RFLD_HLRBRiverine Flooding - Historic Loss Ratio - Buildings
RFLD_HLRPRiverine Flooding - Historic Loss Ratio - Population
RFLD_HLRRRiverine Flooding - Historic Loss Ratio - Total Rating
RFLD_RISKRRiverine Flooding - Hazard Type Risk Index Rating
RFLD_RISKSRiverine Flooding - Hazard Type Risk Index Score
RFLD_RISKVRiverine Flooding - Hazard Type Risk Index Value
RISK_RATNGNational Risk Index - Rating - Composite
RISK_SCORENational Risk Index - Score - Composite
RISK_SPCTLNational Risk Index - State Percentile - Composite
RISK_VALUENational Risk Index - Value - Composite
SOVI_RATNGSocial Vulnerability - Rating
SOVI_SCORESocial Vulnerability - Score
SOVI_SPCTLSocial Vulnerability - State Percentile
STATEState Name
STATEABBRVState Name Abbreviation
STATEFIPSState FIPS Code
STCOFIPSState-County FIPS Code
SWND_AFREQStrong Wind - Annualized Frequency
SWND_ALRAStrong Wind - Expected Annual Loss Rate - Agriculture
SWND_ALRBStrong Wind - Expected Annual Loss Rate - Building
SWND_ALRPStrong Wind - Expected Annual Loss Rate - Population
SWND_ALR_NPCTLStrong Wind - Expected Annual Loss Rate - National Percentile
SWND_EALAStrong Wind - Expected Annual Loss - Agriculture Value
SWND_EALBStrong Wind - Expected Annual Loss - Building Value
SWND_EALPStrong Wind - Expected Annual Loss - Population
SWND_EALPEStrong Wind - Expected Annual Loss - Population Equivalence
SWND_EALRStrong Wind - Expected Annual Loss Rating
SWND_EALSStrong Wind - Expected Annual Loss Score
SWND_EALTStrong Wind - Expected Annual Loss - Total
SWND_EVNTSStrong Wind - Number of Events
SWND_EXPAStrong Wind - Exposure - Agriculture Value
SWND_EXPBStrong Wind - Exposure - Building Value
SWND_EXPPStrong Wind - Exposure - Population
SWND_EXPPEStrong Wind - Exposure - Population Equivalence
SWND_EXPTStrong Wind - Exposure - Total
SWND_EXP_AREAStrong Wind - Exposure - Impacted Area (sq mi)
SWND_HLRAStrong Wind - Historic Loss Ratio - Agriculture
SWND_HLRBStrong Wind - Historic Loss Ratio - Buildings
SWND_HLRPStrong Wind - Historic Loss Ratio - Population
SWND_HLRRStrong Wind - Historic Loss Ratio - Total Rating
SWND_RISKRStrong Wind - Hazard Type Risk Index Rating
SWND_RISKSStrong Wind - Hazard Type Risk Index Score
SWND_RISKVStrong Wind - Hazard Type Risk Index Value
TRACTCensus Tract
TRACTFIPSCensus Tract FIPS Code
TRND_AFREQTornado - Annualized Frequency
TRND_ALRATornado - Expected Annual Loss Rate - Agriculture
TRND_ALRBTornado - Expected Annual Loss Rate - Building
TRND_ALRPTornado - Expected Annual Loss Rate - Population
TRND_ALR_NPCTLTornado - Expected Annual Loss Rate - National Percentile
TRND_EALATornado - Expected Annual Loss - Agriculture Value
TRND_EALBTornado - Expected Annual Loss - Building Value
TRND_EALPTornado - Expected Annual Loss - Population
TRND_EALPETornado - Expected Annual Loss - Population Equivalence
TRND_EALRTornado - Expected Annual Loss Rating
TRND_EALSTornado - Expected Annual Loss Score
TRND_EALTTornado - Expected Annual Loss - Total
TRND_EVNTSTornado - Number of Events
TRND_EXPATornado - Exposure - Agriculture Value
TRND_EXPBTornado - Exposure - Building Value
TRND_EXPPTornado - Exposure - Population
TRND_EXPPETornado - Exposure - Population Equivalence
TRND_EXPTTornado - Exposure - Total
TRND_EXP_AREATornado - Exposure - Impacted Area (sq mi)
TRND_HLRATornado - Historic Loss Ratio - Agriculture
TRND_HLRBTornado - Historic Loss Ratio - Buildings
TRND_HLRPTornado - Historic Loss Ratio - Population
TRND_HLRRTornado - Historic Loss Ratio - Total Rating
TRND_RISKRTornado - Hazard Type Risk Index Rating
TRND_RISKSTornado - Hazard Type Risk Index Score
TRND_RISKVTornado - Hazard Type Risk Index Value
TSUN_AFREQTsunami - Annualized Frequency
TSUN_ALRBTsunami - Expected Annual Loss Rate - Building
TSUN_ALRPTsunami - Expected Annual Loss Rate - Population
TSUN_ALR_NPCTLTsunami - Expected Annual Loss Rate - National Percentile
TSUN_EALBTsunami - Expected Annual Loss - Building Value
TSUN_EALPTsunami - Expected Annual Loss - Population
TSUN_EALPETsunami - Expected Annual Loss - Population Equivalence
TSUN_EALRTsunami - Expected Annual Loss Rating
TSUN_EALSTsunami - Expected Annual Loss Score
TSUN_EALTTsunami - Expected Annual Loss - Total
TSUN_EVNTSTsunami - Number of Events
TSUN_EXPBTsunami - Exposure - Building Value
TSUN_EXPPTsunami - Exposure - Population
TSUN_EXPPETsunami - Exposure - Population Equivalence
TSUN_EXPTTsunami - Exposure - Total
TSUN_EXP_AREATsunami - Exposure - Impacted Area (sq mi)
TSUN_HLRBTsunami - Historic Loss Ratio - Buildings
TSUN_HLRPTsunami - Historic Loss Ratio - Population
TSUN_HLRRTsunami - Historic Loss Ratio - Total Rating
TSUN_RISKRTsunami - Hazard Type Risk Index Rating
TSUN_RISKSTsunami - Hazard Type Risk Index Score
TSUN_RISKVTsunami - Hazard Type Risk Index Value
VLCN_AFREQVolcanic Activity - Annualized Frequency
VLCN_ALRBVolcanic Activity - Expected Annual Loss Rate - Building
VLCN_ALRPVolcanic Activity - Expected Annual Loss Rate - Population
VLCN_ALR_NPCTLVolcanic Activity - Expected Annual Loss Rate - National Percentile
VLCN_EALBVolcanic Activity - Expected Annual Loss - Building Value
VLCN_EALPVolcanic Activity - Expected Annual Loss - Population
VLCN_EALPEVolcanic Activity - Expected Annual Loss - Population Equivalence
VLCN_EALRVolcanic Activity - Expected Annual Loss Rating
VLCN_EALSVolcanic Activity - Expected Annual Loss Score
VLCN_EALTVolcanic Activity - Expected Annual Loss - Total
VLCN_EVNTSVolcanic Activity - Number of Events
VLCN_EXPBVolcanic Activity - Exposure - Building Value
VLCN_EXPPVolcanic Activity - Exposure - Population
VLCN_EXPPEVolcanic Activity - Exposure - Population Equivalence
VLCN_EXPTVolcanic Activity - Exposure - Total
VLCN_EXP_AREAVolcanic Activity - Exposure - Impacted Area (sq mi)
VLCN_HLRBVolcanic Activity - Historic Loss Ratio - Buildings
VLCN_HLRPVolcanic Activity - Historic Loss Ratio - Population
VLCN_HLRRVolcanic Activity - Historic Loss Ratio - Total Rating
VLCN_RISKRVolcanic Activity - Hazard Type Risk Index Rating
VLCN_RISKSVolcanic Activity - Hazard Type Risk Index Score
VLCN_RISKVVolcanic Activity - Hazard Type Risk Index Value
WFIR_AFREQWildfire - Annualized Frequency
WFIR_ALRAWildfire - Expected Annual Loss Rate - Agriculture
WFIR_ALRBWildfire - Expected Annual Loss Rate - Building
WFIR_ALRPWildfire - Expected Annual Loss Rate - Population
WFIR_ALR_NPCTLWildfire - Expected Annual Loss Rate - National Percentile
WFIR_EALAWildfire - Expected Annual Loss - Agriculture Value
WFIR_EALBWildfire - Expected Annual Loss - Building Value
WFIR_EALPWildfire - Expected Annual Loss - Population
WFIR_EALPEWildfire - Expected Annual Loss - Population Equivalence
WFIR_EALRWildfire - Expected Annual Loss Rating
WFIR_EALSWildfire - Expected Annual Loss Score
WFIR_EALTWildfire - Expected Annual Loss - Total
WFIR_EVNTSWildfire - Number of Events
WFIR_EXPAWildfire - Exposure - Agriculture Value
WFIR_EXPBWildfire - Exposure - Building Value
WFIR_EXPPWildfire - Exposure - Population
WFIR_EXPPEWildfire - Exposure - Population Equivalence
WFIR_EXPTWildfire - Exposure - Total
WFIR_EXP_AREAWildfire - Exposure - Impacted Area (sq mi)
WFIR_HLRAWildfire - Historic Loss Ratio - Agriculture
WFIR_HLRBWildfire - Historic Loss Ratio - Buildings
WFIR_HLRPWildfire - Historic Loss Ratio - Population
WFIR_HLRRWildfire - Historic Loss Ratio - Total Rating
WFIR_RISKRWildfire - Hazard Type Risk Index Rating
WFIR_RISKSWildfire - Hazard Type Risk Index Score
WFIR_RISKVWildfire - Hazard Type Risk Index Value
WNTW_AFREQWinter Weather - Annualized Frequency
WNTW_ALRAWinter Weather - Expected Annual Loss Rate - Agriculture
WNTW_ALRBWinter Weather - Expected Annual Loss Rate - Building
WNTW_ALRPWinter Weather - Expected Annual Loss Rate - Population
WNTW_ALR_NPCTLWinter Weather - Expected Annual Loss Rate - National Percentile
WNTW_EALAWinter Weather - Expected Annual Loss - Agriculture Value
WNTW_EALBWinter Weather - Expected Annual Loss - Building Value
WNTW_EALPWinter Weather - Expected Annual Loss - Population
WNTW_EALPEWinter Weather - Expected Annual Loss - Population Equivalence
WNTW_EALRWinter Weather - Expected Annual Loss Rating
WNTW_EALSWinter Weather - Expected Annual Loss Score
WNTW_EALTWinter Weather - Expected Annual Loss - Total
WNTW_EVNTSWinter Weather - Number of Events
WNTW_EXPAWinter Weather - Exposure - Agriculture Value
WNTW_EXPBWinter Weather - Exposure - Building Value
WNTW_EXPPWinter Weather - Exposure - Population
WNTW_EXPPEWinter Weather - Exposure - Population Equivalence
WNTW_EXPTWinter Weather - Exposure - Total
WNTW_EXP_AREAWinter Weather - Exposure - Impacted Area (sq mi)
WNTW_HLRAWinter Weather - Historic Loss Ratio - Agriculture
WNTW_HLRBWinter Weather - Historic Loss Ratio - Buildings
WNTW_HLRPWinter Weather - Historic Loss Ratio - Population
WNTW_HLRRWinter Weather - Historic Loss Ratio - Total Rating
WNTW_RISKRWinter Weather - Hazard Type Risk Index Rating
WNTW_RISKSWinter Weather - Hazard Type Risk Index Score
WNTW_RISKVWinter Weather - Hazard Type Risk Index Value

SSL/TLS information

Use modern security software and cipher suites.

Ready to get started?