New 42-day free trial Get it now
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. Property 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.
features string 128 A comma-separated list of features. These may require a special plan that allows the feature to be used.
Feature Value Description
financial Return the financial_history attribute.
This is applicable only to property/principal requests.
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 (with features=financial)

[
	{
		"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",
			"financial_history": [
				{
					"document_type_description": "deed_of_trust",
					"lender_city": "Bethesda",
					"lender_last_name": "Walker & Dunlop LLC",
					"lender_name": "Walker & Dunlop LLC",
					"lender_state": "MD",
					"lender_zip": "20814",
					"mortgage_amount": "2352000",
					"mortgage_due_date": "2028-04-01",
					"mortgage_lender_code": "564631",
					"mortgage_recording_date": "2022-06-29",
					"mortgage_term": "70",
					"mortgage_term_type": "month",
					"mortgage_type": "commercial"
				},
				{
					"code_title_company": "26",
					"mortgage_amount": "77830000",
					"mortgage_due_date": "2028-04-01",
					"mortgage_lender_code": "87063",
				}
			],
			...
		}
	}
]

Example response - property/financial Dataset

[
	{
		"smarty_key": "9856148841",
		"data_set_name": "property",
		"data_subset_name": "financial",
		"attributes": {
			"assessor_taxroll_update": "2022-01-01",
			"deed_sale_price": "2135000",
			"financial_history": [
				{
					"document_type_description": "deed_of_trust",
					"lender_city": "Bethesda",
					"lender_last_name": "Walker & Dunlop LLC",
					"lender_name": "Walker & Dunlop LLC",
					"lender_state": "MD",
					"lender_zip": "20814",
					"mortgage_amount": "2352000",
					"mortgage_due_date": "2028-04-01",
					"mortgage_lender_code": "564631",
					"mortgage_recording_date": "2022-06-29",
					"mortgage_term": "70",
					"mortgage_term_type": "month",
					"mortgage_type": "commercial"
				},
				{
					"code_title_company": "26",
					"document_type_description": "deed_of_trust",
					"instrument_date": "2018-03-29",
					"lender_address": "7501 Wisconsin Ave # 1200e",
					"lender_city": "Bethesda",
					"lender_last_name": "Walker & Dunlop",
					"lender_name": "Walker & Dunlop",
					"lender_seller_carry_back": "non_seller_carryback_loan",
					"lender_state": "MD",
					"lender_zip": "20814",
					"lender_zip_extended": "6531",
					"mortgage_amount": "77830000",
					"mortgage_due_date": "2028-04-01",
					"mortgage_lender_code": "87063",
					"mortgage_recording_date": "2018-04-02",
					"mortgage_term": "120",
					"mortgage_term_type": "month",
					"multi_parcel_flag": "multiple_parcels_conveyed_unknown_impact_to_apn",
					"name_title_company": "Fidelity National Title"
				}
			],
			...
		}
	}
]

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.

Property attribute groups (For US property principal and financial datasets)

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

View all attribute definitions

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
AGRIVALUE Agriculture Value ($)
ALR_NPCTL Expected Annual Loss Rate - National Percentile - Composite
ALR_VALA Expected Annual Loss Rate - Agriculture - Composite
ALR_VALB Expected Annual Loss Rate - Building - Composite
ALR_VALP Expected Annual Loss Rate - Population - Composite
ALR_VRA_NPCTL Social Vulnerability and Community Resilience Adjusted Expected Annual Loss Rate - National Percentile - Composite
AREA Area (sq mi)
AVLN_AFREQ Avalanche - Annualized Frequency
AVLN_ALRB Avalanche - Expected Annual Loss Rate - Building
AVLN_ALRP Avalanche - Expected Annual Loss Rate - Population
AVLN_ALR_NPCTL Avalanche - Expected Annual Loss Rate - National Percentile
AVLN_EALB Avalanche - Expected Annual Loss - Building Value
AVLN_EALP Avalanche - Expected Annual Loss - Population
AVLN_EALPE Avalanche - Expected Annual Loss - Population Equivalence
AVLN_EALR Avalanche - Expected Annual Loss Rating
AVLN_EALS Avalanche - Expected Annual Loss Score
AVLN_EALT Avalanche - Expected Annual Loss - Total
AVLN_EVNTS Avalanche - Number of Events
AVLN_EXPB Avalanche - Exposure - Building Value
AVLN_EXPP Avalanche - Exposure - Population
AVLN_EXPPE Avalanche - Exposure - Population Equivalence
AVLN_EXPT Avalanche - Exposure - Total
AVLN_EXP_AREA Avalanche - Exposure - Impacted Area (sq mi)
AVLN_HLRB Avalanche - Historic Loss Ratio - Buildings
AVLN_HLRP Avalanche - Historic Loss Ratio - Population
AVLN_HLRR Avalanche - Historic Loss Ratio - Total Rating
AVLN_RISKR Avalanche - Hazard Type Risk Index Rating
AVLN_RISKS Avalanche - Hazard Type Risk Index Score
AVLN_RISKV Avalanche - Hazard Type Risk Index Value
BUILDVALUE Building Value ($)
CFLD_AFREQ Coastal Flooding - Annualized Frequency
CFLD_ALRB Coastal Flooding - Expected Annual Loss Rate - Building
CFLD_ALRP Coastal Flooding - Expected Annual Loss Rate - Population
CFLD_ALR_NPCTL Coastal Flooding - Expected Annual Loss Rate - National Percentile
CFLD_EALB Coastal Flooding - Expected Annual Loss - Building Value
CFLD_EALP Coastal Flooding - Expected Annual Loss - Population
CFLD_EALPE Coastal Flooding - Expected Annual Loss - Population Equivalence
CFLD_EALR Coastal Flooding - Expected Annual Loss Rating
CFLD_EALS Coastal Flooding - Expected Annual Loss Score
CFLD_EALT Coastal Flooding - Expected Annual Loss - Total
CFLD_EVNTS Coastal Flooding - Number of Events
CFLD_EXPB Coastal Flooding - Exposure - Building Value
CFLD_EXPP Coastal Flooding - Exposure - Population
CFLD_EXPPE Coastal Flooding - Exposure - Population Equivalence
CFLD_EXPT Coastal Flooding - Exposure - Total
CFLD_EXP_AREA Coastal Flooding - Exposure - Impacted Area (sq mi)
CFLD_HLRB Coastal Flooding - Historic Loss Ratio - Buildings
CFLD_HLRP Coastal Flooding - Historic Loss Ratio - Population
CFLD_HLRR Coastal Flooding - Historic Loss Ratio - Total Rating
CFLD_RISKR Coastal Flooding - Hazard Type Risk Index Rating
CFLD_RISKS Coastal Flooding - Hazard Type Risk Index Score
CFLD_RISKV Coastal Flooding - Hazard Type Risk Index Value
COUNTY County Name
COUNTYFIPS County FIPS Code
COUNTYTYPE County Type
CRF_VALUE Community Risk Factor - Value
CWAV_AFREQ Cold Wave - Annualized Frequency
CWAV_ALRA Cold Wave - Expected Annual Loss Rate - Agriculture
CWAV_ALRB Cold Wave - Expected Annual Loss Rate - Building
CWAV_ALRP Cold Wave - Expected Annual Loss Rate - Population
CWAV_ALR_NPCTL Cold Wave - Expected Annual Loss Rate - National Percentile
CWAV_EALA Cold Wave - Expected Annual Loss - Agriculture Value
CWAV_EALB Cold Wave - Expected Annual Loss - Building Value
CWAV_EALP Cold Wave - Expected Annual Loss - Population
CWAV_EALPE Cold Wave - Expected Annual Loss - Population Equivalence
CWAV_EALR Cold Wave - Expected Annual Loss Rating
CWAV_EALS Cold Wave - Expected Annual Loss Score
CWAV_EALT Cold Wave - Expected Annual Loss - Total
CWAV_EVNTS Cold Wave - Number of Events
CWAV_EXPA Cold Wave - Exposure - Agriculture Value
CWAV_EXPB Cold Wave - Exposure - Building Value
CWAV_EXPP Cold Wave - Exposure - Population
CWAV_EXPPE Cold Wave - Exposure - Population Equivalence
CWAV_EXPT Cold Wave - Exposure - Total
CWAV_EXP_AREA Cold Wave - Exposure - Impacted Area (sq mi)
CWAV_HLRA Cold Wave - Historic Loss Ratio - Agriculture
CWAV_HLRB Cold Wave - Historic Loss Ratio - Buildings
CWAV_HLRP Cold Wave - Historic Loss Ratio - Population
CWAV_HLRR Cold Wave - Historic Loss Ratio - Total Rating
CWAV_RISKR Cold Wave - Hazard Type Risk Index Rating
CWAV_RISKS Cold Wave - Hazard Type Risk Index Score
CWAV_RISKV Cold Wave - Hazard Type Risk Index Value
DRGT_AFREQ Drought - Annualized Frequency
DRGT_ALRA Drought - Expected Annual Loss Rate - Agriculture
DRGT_ALR_NPCTL Drought - Expected Annual Loss Rate - National Percentile
DRGT_EALA Drought - Expected Annual Loss - Agriculture Value
DRGT_EALR Drought - Expected Annual Loss Rating
DRGT_EALS Drought - Expected Annual Loss Score
DRGT_EALT Drought - Expected Annual Loss - Total
DRGT_EVNTS Drought - Number of Events
DRGT_EXPA Drought - Exposure - Agriculture Value
DRGT_EXPT Drought - Exposure - Total
DRGT_EXP_AREA Drought - Exposure - Impacted Area (sq mi)
DRGT_HLRA Drought - Historic Loss Ratio - Agriculture
DRGT_HLRR Drought - Historic Loss Ratio - Total Rating
DRGT_RISKR Drought - Hazard Type Risk Index Rating
DRGT_RISKS Drought - Hazard Type Risk Index Score
DRGT_RISKV Drought - Hazard Type Risk Index Value
EAL_RATNG Expected Annual Loss - Rating - Composite
EAL_SCORE Expected Annual Loss - Score - Composite
EAL_SPCTL Expected Annual Loss - State Percentile - Composite
EAL_VALA Expected Annual Loss - Agriculture Value - Composite
EAL_VALB Expected Annual Loss - Building Value - Composite
EAL_VALP Expected Annual Loss - Population - Composite
EAL_VALPE Expected Annual Loss - Population Equivalence - Composite
EAL_VALT Expected Annual Loss - Total - Composite
ERQK_AFREQ Earthquake - Annualized Frequency
ERQK_ALRB Earthquake - Expected Annual Loss Rate - Building
ERQK_ALRP Earthquake - Expected Annual Loss Rate - Population
ERQK_ALR_NPCTL Earthquake - Expected Annual Loss Rate - National Percentile
ERQK_EALB Earthquake - Expected Annual Loss - Building Value
ERQK_EALP Earthquake - Expected Annual Loss - Population
ERQK_EALPE Earthquake - Expected Annual Loss - Population Equivalence
ERQK_EALR Earthquake - Expected Annual Loss Rating
ERQK_EALS Earthquake - Expected Annual Loss Score
ERQK_EALT Earthquake - Expected Annual Loss - Total
ERQK_EVNTS Earthquake - Number of Events
ERQK_EXPB Earthquake - Exposure - Building Value
ERQK_EXPP Earthquake - Exposure - Population
ERQK_EXPPE Earthquake - Exposure - Population Equivalence
ERQK_EXPT Earthquake - Exposure - Total
ERQK_EXP_AREA Earthquake - Exposure - Impacted Area (sq mi)
ERQK_HLRB Earthquake - Historic Loss Ratio - Buildings
ERQK_HLRP Earthquake - Historic Loss Ratio - Population
ERQK_HLRR Earthquake - Historic Loss Ratio - Total Rating
ERQK_RISKR Earthquake - Hazard Type Risk Index Rating
ERQK_RISKS Earthquake - Hazard Type Risk Index Score
ERQK_RISKV Earthquake - Hazard Type Risk Index Value
HAIL_AFREQ Hail - Annualized Frequency
HAIL_ALRA Hail - Expected Annual Loss Rate - Agriculture
HAIL_ALRB Hail - Expected Annual Loss Rate - Building
HAIL_ALRP Hail - Expected Annual Loss Rate - Population
HAIL_ALR_NPCTL Hail - Expected Annual Loss Rate - National Percentile
HAIL_EALA Hail - Expected Annual Loss - Agriculture Value
HAIL_EALB Hail - Expected Annual Loss - Building Value
HAIL_EALP Hail - Expected Annual Loss - Population
HAIL_EALPE Hail - Expected Annual Loss - Population Equivalence
HAIL_EALR Hail - Expected Annual Loss Rating
HAIL_EALS Hail - Expected Annual Loss Score
HAIL_EALT Hail - Expected Annual Loss - Total
HAIL_EVNTS Hail - Number of Events
HAIL_EXPA Hail - Exposure - Agriculture Value
HAIL_EXPB Hail - Exposure - Building Value
HAIL_EXPP Hail - Exposure - Population
HAIL_EXPPE Hail - Exposure - Population Equivalence
HAIL_EXPT Hail - Exposure - Total
HAIL_EXP_AREA Hail - Exposure - Impacted Area (sq mi)
HAIL_HLRA Hail - Historic Loss Ratio - Agriculture
HAIL_HLRB Hail - Historic Loss Ratio - Buildings
HAIL_HLRP Hail - Historic Loss Ratio - Population
HAIL_HLRR Hail - Historic Loss Ratio - Total Rating
HAIL_RISKR Hail - Hazard Type Risk Index Rating
HAIL_RISKS Hail - Hazard Type Risk Index Score
HAIL_RISKV Hail - Hazard Type Risk Index Value
HRCN_AFREQ Hurricane - Annualized Frequency
HRCN_ALRA Hurricane - Expected Annual Loss Rate - Agriculture
HRCN_ALRB Hurricane - Expected Annual Loss Rate - Building
HRCN_ALRP Hurricane - Expected Annual Loss Rate - Population
HRCN_ALR_NPCTL Hurricane - Expected Annual Loss Rate - National Percentile
HRCN_EALA Hurricane - Expected Annual Loss - Agriculture Value
HRCN_EALB Hurricane - Expected Annual Loss - Building Value
HRCN_EALP Hurricane - Expected Annual Loss - Population
HRCN_EALPE Hurricane - Expected Annual Loss - Population Equivalence
HRCN_EALR Hurricane - Expected Annual Loss Rating
HRCN_EALS Hurricane - Expected Annual Loss Score
HRCN_EALT Hurricane - Expected Annual Loss - Total
HRCN_EVNTS Hurricane - Number of Events
HRCN_EXPA Hurricane - Exposure - Agriculture Value
HRCN_EXPB Hurricane - Exposure - Building Value
HRCN_EXPP Hurricane - Exposure - Population
HRCN_EXPPE Hurricane - Exposure - Population Equivalence
HRCN_EXPT Hurricane - Exposure - Total
HRCN_EXP_AREA Hurricane - Exposure - Impacted Area (sq mi)
HRCN_HLRA Hurricane - Historic Loss Ratio - Agriculture
HRCN_HLRB Hurricane - Historic Loss Ratio - Buildings
HRCN_HLRP Hurricane - Historic Loss Ratio - Population
HRCN_HLRR Hurricane - Historic Loss Ratio - Total Rating
HRCN_RISKR Hurricane - Hazard Type Risk Index Rating
HRCN_RISKS Hurricane - Hazard Type Risk Index Score
HRCN_RISKV Hurricane - Hazard Type Risk Index Value
HWAV_AFREQ Heat Wave - Annualized Frequency
HWAV_ALRA Heat Wave - Expected Annual Loss Rate - Agriculture
HWAV_ALRB Heat Wave - Expected Annual Loss Rate - Building
HWAV_ALRP Heat Wave - Expected Annual Loss Rate - Population
HWAV_ALR_NPCTL Heat Wave - Expected Annual Loss Rate - National Percentile
HWAV_EALA Heat Wave - Expected Annual Loss - Agriculture Value
HWAV_EALB Heat Wave - Expected Annual Loss - Building Value
HWAV_EALP Heat Wave - Expected Annual Loss - Population
HWAV_EALPE Heat Wave - Expected Annual Loss - Population Equivalence
HWAV_EALR Heat Wave - Expected Annual Loss Rating
HWAV_EALS Heat Wave - Expected Annual Loss Score
HWAV_EALT Heat Wave - Expected Annual Loss - Total
HWAV_EVNTS Heat Wave - Number of Events
HWAV_EXPA Heat Wave - Exposure - Agriculture Value
HWAV_EXPB Heat Wave - Exposure - Building Value
HWAV_EXPP Heat Wave - Exposure - Population
HWAV_EXPPE Heat Wave - Exposure - Population Equivalence
HWAV_EXPT Heat Wave - Exposure - Total
HWAV_EXP_AREA Heat Wave - Exposure - Impacted Area (sq mi)
HWAV_HLRA Heat Wave - Historic Loss Ratio - Agriculture
HWAV_HLRB Heat Wave - Historic Loss Ratio - Buildings
HWAV_HLRP Heat Wave - Historic Loss Ratio - Population
HWAV_HLRR Heat Wave - Historic Loss Ratio - Total Rating
HWAV_RISKR Heat Wave - Hazard Type Risk Index Rating
HWAV_RISKS Heat Wave - Hazard Type Risk Index Score
HWAV_RISKV Heat Wave - Hazard Type Risk Index Value
ISTM_AFREQ Ice Storm - Annualized Frequency
ISTM_ALRB Ice Storm - Expected Annual Loss Rate - Building
ISTM_ALRP Ice Storm - Expected Annual Loss Rate - Population
ISTM_ALR_NPCTL Ice Storm - Expected Annual Loss Rate - National Percentile
ISTM_EALB Ice Storm - Expected Annual Loss - Building Value
ISTM_EALP Ice Storm - Expected Annual Loss - Population
ISTM_EALPE Ice Storm - Expected Annual Loss - Population Equivalence
ISTM_EALR Ice Storm - Expected Annual Loss Rating
ISTM_EALS Ice Storm - Expected Annual Loss Score
ISTM_EALT Ice Storm - Expected Annual Loss - Total
ISTM_EVNTS Ice Storm - Number of Events
ISTM_EXPB Ice Storm - Exposure - Building Value
ISTM_EXPP Ice Storm - Exposure - Population
ISTM_EXPPE Ice Storm - Exposure - Population Equivalence
ISTM_EXPT Ice Storm - Exposure - Total
ISTM_EXP_AREA Ice Storm - Exposure - Impacted Area (sq mi)
ISTM_HLRB Ice Storm - Historic Loss Ratio - Buildings
ISTM_HLRP Ice Storm - Historic Loss Ratio - Population
ISTM_HLRR Ice Storm - Historic Loss Ratio - Total Rating
ISTM_RISKR Ice Storm - Hazard Type Risk Index Rating
ISTM_RISKS Ice Storm - Hazard Type Risk Index Score
ISTM_RISKV Ice Storm - Hazard Type Risk Index Value
LNDS_AFREQ Landslide - Annualized Frequency
LNDS_ALRB Landslide - Expected Annual Loss Rate - Building
LNDS_ALRP Landslide - Expected Annual Loss Rate - Population
LNDS_ALR_NPCTL Landslide - Expected Annual Loss Rate - National Percentile
LNDS_EALB Landslide - Expected Annual Loss - Building Value
LNDS_EALP Landslide - Expected Annual Loss - Population
LNDS_EALPE Landslide - Expected Annual Loss - Population Equivalence
LNDS_EALR Landslide - Expected Annual Loss Rating
LNDS_EALS Landslide - Expected Annual Loss Score
LNDS_EALT Landslide - Expected Annual Loss - Total
LNDS_EVNTS Landslide - Number of Events
LNDS_EXPB Landslide - Exposure - Building Value
LNDS_EXPP Landslide - Exposure - Population
LNDS_EXPPE Landslide - Exposure - Population Equivalence
LNDS_EXPT Landslide - Exposure - Total
LNDS_EXP_AREA Landslide - Exposure - Impacted Area (sq mi)
LNDS_HLRB Landslide - Historic Loss Ratio - Buildings
LNDS_HLRP Landslide - Historic Loss Ratio - Population
LNDS_HLRR Landslide - Historic Loss Ratio - Total Rating
LNDS_RISKR Landslide - Hazard Type Risk Index Rating
LNDS_RISKS Landslide - Hazard Type Risk Index Score
LNDS_RISKV Landslide - Hazard Type Risk Index Value
LTNG_AFREQ Lightning - Annualized Frequency
LTNG_ALRB Lightning - Expected Annual Loss Rate - Building
LTNG_ALRP Lightning - Expected Annual Loss Rate - Population
LTNG_ALR_NPCTL Lightning - Expected Annual Loss Rate - National Percentile
LTNG_EALB Lightning - Expected Annual Loss - Building Value
LTNG_EALP Lightning - Expected Annual Loss - Population
LTNG_EALPE Lightning - Expected Annual Loss - Population Equivalence
LTNG_EALR Lightning - Expected Annual Loss Rating
LTNG_EALS Lightning - Expected Annual Loss Score
LTNG_EALT Lightning - Expected Annual Loss - Total
LTNG_EVNTS Lightning - Number of Events
LTNG_EXPB Lightning - Exposure - Building Value
LTNG_EXPP Lightning - Exposure - Population
LTNG_EXPPE Lightning - Exposure - Population Equivalence
LTNG_EXPT Lightning - Exposure - Total
LTNG_EXP_AREA Lightning - Exposure - Impacted Area (sq mi)
LTNG_HLRB Lightning - Historic Loss Ratio - Buildings
LTNG_HLRP Lightning - Historic Loss Ratio - Population
LTNG_HLRR Lightning - Historic Loss Ratio - Total Rating
LTNG_RISKR Lightning - Hazard Type Risk Index Rating
LTNG_RISKS Lightning - Hazard Type Risk Index Score
LTNG_RISKV Lightning - Hazard Type Risk Index Value
NRI_VER National Risk Index Version
POPULATION Population (2020)
RESL_RATNG Community Resilience - Rating
RESL_SCORE Community Resilience - Score
RESL_SPCTL Community Resilience - State Percentile
RESL_VALUE Community Resilience - Value
RFLD_AFREQ Riverine Flooding - Annualized Frequency
RFLD_ALRA Riverine Flooding - Expected Annual Loss Rate - Agriculture
RFLD_ALRB Riverine Flooding - Expected Annual Loss Rate - Building
RFLD_ALRP Riverine Flooding - Expected Annual Loss Rate - Population
RFLD_ALR_NPCTL Riverine Flooding - Expected Annual Loss Rate - National Percentile
RFLD_EALA Riverine Flooding - Expected Annual Loss - Agriculture Value
RFLD_EALB Riverine Flooding - Expected Annual Loss - Building Value
RFLD_EALP Riverine Flooding - Expected Annual Loss - Population
RFLD_EALPE Riverine Flooding - Expected Annual Loss - Population Equivalence
RFLD_EALR Riverine Flooding - Expected Annual Loss Rating
RFLD_EALS Riverine Flooding - Expected Annual Loss Score
RFLD_EALT Riverine Flooding - Expected Annual Loss - Total
RFLD_EVNTS Riverine Flooding - Number of Events
RFLD_EXPA Riverine Flooding - Exposure - Agriculture Value
RFLD_EXPB Riverine Flooding - Exposure - Building Value
RFLD_EXPP Riverine Flooding - Exposure - Population
RFLD_EXPPE Riverine Flooding - Exposure - Population Equivalence
RFLD_EXPT Riverine Flooding - Exposure - Total
RFLD_EXP_AREA Riverine Flooding - Exposure - Impacted Area (sq mi)
RFLD_HLRA Riverine Flooding - Historic Loss Ratio - Agriculture
RFLD_HLRB Riverine Flooding - Historic Loss Ratio - Buildings
RFLD_HLRP Riverine Flooding - Historic Loss Ratio - Population
RFLD_HLRR Riverine Flooding - Historic Loss Ratio - Total Rating
RFLD_RISKR Riverine Flooding - Hazard Type Risk Index Rating
RFLD_RISKS Riverine Flooding - Hazard Type Risk Index Score
RFLD_RISKV Riverine Flooding - Hazard Type Risk Index Value
RISK_RATNG National Risk Index - Rating - Composite
RISK_SCORE National Risk Index - Score - Composite
RISK_SPCTL National Risk Index - State Percentile - Composite
RISK_VALUE National Risk Index - Value - Composite
SOVI_RATNG Social Vulnerability - Rating
SOVI_SCORE Social Vulnerability - Score
SOVI_SPCTL Social Vulnerability - State Percentile
STATE State Name
STATEABBRV State Name Abbreviation
STATEFIPS State FIPS Code
STCOFIPS State-County FIPS Code
SWND_AFREQ Strong Wind - Annualized Frequency
SWND_ALRA Strong Wind - Expected Annual Loss Rate - Agriculture
SWND_ALRB Strong Wind - Expected Annual Loss Rate - Building
SWND_ALRP Strong Wind - Expected Annual Loss Rate - Population
SWND_ALR_NPCTL Strong Wind - Expected Annual Loss Rate - National Percentile
SWND_EALA Strong Wind - Expected Annual Loss - Agriculture Value
SWND_EALB Strong Wind - Expected Annual Loss - Building Value
SWND_EALP Strong Wind - Expected Annual Loss - Population
SWND_EALPE Strong Wind - Expected Annual Loss - Population Equivalence
SWND_EALR Strong Wind - Expected Annual Loss Rating
SWND_EALS Strong Wind - Expected Annual Loss Score
SWND_EALT Strong Wind - Expected Annual Loss - Total
SWND_EVNTS Strong Wind - Number of Events
SWND_EXPA Strong Wind - Exposure - Agriculture Value
SWND_EXPB Strong Wind - Exposure - Building Value
SWND_EXPP Strong Wind - Exposure - Population
SWND_EXPPE Strong Wind - Exposure - Population Equivalence
SWND_EXPT Strong Wind - Exposure - Total
SWND_EXP_AREA Strong Wind - Exposure - Impacted Area (sq mi)
SWND_HLRA Strong Wind - Historic Loss Ratio - Agriculture
SWND_HLRB Strong Wind - Historic Loss Ratio - Buildings
SWND_HLRP Strong Wind - Historic Loss Ratio - Population
SWND_HLRR Strong Wind - Historic Loss Ratio - Total Rating
SWND_RISKR Strong Wind - Hazard Type Risk Index Rating
SWND_RISKS Strong Wind - Hazard Type Risk Index Score
SWND_RISKV Strong Wind - Hazard Type Risk Index Value
TRACT Census Tract
TRACTFIPS Census Tract FIPS Code
TRND_AFREQ Tornado - Annualized Frequency
TRND_ALRA Tornado - Expected Annual Loss Rate - Agriculture
TRND_ALRB Tornado - Expected Annual Loss Rate - Building
TRND_ALRP Tornado - Expected Annual Loss Rate - Population
TRND_ALR_NPCTL Tornado - Expected Annual Loss Rate - National Percentile
TRND_EALA Tornado - Expected Annual Loss - Agriculture Value
TRND_EALB Tornado - Expected Annual Loss - Building Value
TRND_EALP Tornado - Expected Annual Loss - Population
TRND_EALPE Tornado - Expected Annual Loss - Population Equivalence
TRND_EALR Tornado - Expected Annual Loss Rating
TRND_EALS Tornado - Expected Annual Loss Score
TRND_EALT Tornado - Expected Annual Loss - Total
TRND_EVNTS Tornado - Number of Events
TRND_EXPA Tornado - Exposure - Agriculture Value
TRND_EXPB Tornado - Exposure - Building Value
TRND_EXPP Tornado - Exposure - Population
TRND_EXPPE Tornado - Exposure - Population Equivalence
TRND_EXPT Tornado - Exposure - Total
TRND_EXP_AREA Tornado - Exposure - Impacted Area (sq mi)
TRND_HLRA Tornado - Historic Loss Ratio - Agriculture
TRND_HLRB Tornado - Historic Loss Ratio - Buildings
TRND_HLRP Tornado - Historic Loss Ratio - Population
TRND_HLRR Tornado - Historic Loss Ratio - Total Rating
TRND_RISKR Tornado - Hazard Type Risk Index Rating
TRND_RISKS Tornado - Hazard Type Risk Index Score
TRND_RISKV Tornado - Hazard Type Risk Index Value
TSUN_AFREQ Tsunami - Annualized Frequency
TSUN_ALRB Tsunami - Expected Annual Loss Rate - Building
TSUN_ALRP Tsunami - Expected Annual Loss Rate - Population
TSUN_ALR_NPCTL Tsunami - Expected Annual Loss Rate - National Percentile
TSUN_EALB Tsunami - Expected Annual Loss - Building Value
TSUN_EALP Tsunami - Expected Annual Loss - Population
TSUN_EALPE Tsunami - Expected Annual Loss - Population Equivalence
TSUN_EALR Tsunami - Expected Annual Loss Rating
TSUN_EALS Tsunami - Expected Annual Loss Score
TSUN_EALT Tsunami - Expected Annual Loss - Total
TSUN_EVNTS Tsunami - Number of Events
TSUN_EXPB Tsunami - Exposure - Building Value
TSUN_EXPP Tsunami - Exposure - Population
TSUN_EXPPE Tsunami - Exposure - Population Equivalence
TSUN_EXPT Tsunami - Exposure - Total
TSUN_EXP_AREA Tsunami - Exposure - Impacted Area (sq mi)
TSUN_HLRB Tsunami - Historic Loss Ratio - Buildings
TSUN_HLRP Tsunami - Historic Loss Ratio - Population
TSUN_HLRR Tsunami - Historic Loss Ratio - Total Rating
TSUN_RISKR Tsunami - Hazard Type Risk Index Rating
TSUN_RISKS Tsunami - Hazard Type Risk Index Score
TSUN_RISKV Tsunami - Hazard Type Risk Index Value
VLCN_AFREQ Volcanic Activity - Annualized Frequency
VLCN_ALRB Volcanic Activity - Expected Annual Loss Rate - Building
VLCN_ALRP Volcanic Activity - Expected Annual Loss Rate - Population
VLCN_ALR_NPCTL Volcanic Activity - Expected Annual Loss Rate - National Percentile
VLCN_EALB Volcanic Activity - Expected Annual Loss - Building Value
VLCN_EALP Volcanic Activity - Expected Annual Loss - Population
VLCN_EALPE Volcanic Activity - Expected Annual Loss - Population Equivalence
VLCN_EALR Volcanic Activity - Expected Annual Loss Rating
VLCN_EALS Volcanic Activity - Expected Annual Loss Score
VLCN_EALT Volcanic Activity - Expected Annual Loss - Total
VLCN_EVNTS Volcanic Activity - Number of Events
VLCN_EXPB Volcanic Activity - Exposure - Building Value
VLCN_EXPP Volcanic Activity - Exposure - Population
VLCN_EXPPE Volcanic Activity - Exposure - Population Equivalence
VLCN_EXPT Volcanic Activity - Exposure - Total
VLCN_EXP_AREA Volcanic Activity - Exposure - Impacted Area (sq mi)
VLCN_HLRB Volcanic Activity - Historic Loss Ratio - Buildings
VLCN_HLRP Volcanic Activity - Historic Loss Ratio - Population
VLCN_HLRR Volcanic Activity - Historic Loss Ratio - Total Rating
VLCN_RISKR Volcanic Activity - Hazard Type Risk Index Rating
VLCN_RISKS Volcanic Activity - Hazard Type Risk Index Score
VLCN_RISKV Volcanic Activity - Hazard Type Risk Index Value
WFIR_AFREQ Wildfire - Annualized Frequency
WFIR_ALRA Wildfire - Expected Annual Loss Rate - Agriculture
WFIR_ALRB Wildfire - Expected Annual Loss Rate - Building
WFIR_ALRP Wildfire - Expected Annual Loss Rate - Population
WFIR_ALR_NPCTL Wildfire - Expected Annual Loss Rate - National Percentile
WFIR_EALA Wildfire - Expected Annual Loss - Agriculture Value
WFIR_EALB Wildfire - Expected Annual Loss - Building Value
WFIR_EALP Wildfire - Expected Annual Loss - Population
WFIR_EALPE Wildfire - Expected Annual Loss - Population Equivalence
WFIR_EALR Wildfire - Expected Annual Loss Rating
WFIR_EALS Wildfire - Expected Annual Loss Score
WFIR_EALT Wildfire - Expected Annual Loss - Total
WFIR_EVNTS Wildfire - Number of Events
WFIR_EXPA Wildfire - Exposure - Agriculture Value
WFIR_EXPB Wildfire - Exposure - Building Value
WFIR_EXPP Wildfire - Exposure - Population
WFIR_EXPPE Wildfire - Exposure - Population Equivalence
WFIR_EXPT Wildfire - Exposure - Total
WFIR_EXP_AREA Wildfire - Exposure - Impacted Area (sq mi)
WFIR_HLRA Wildfire - Historic Loss Ratio - Agriculture
WFIR_HLRB Wildfire - Historic Loss Ratio - Buildings
WFIR_HLRP Wildfire - Historic Loss Ratio - Population
WFIR_HLRR Wildfire - Historic Loss Ratio - Total Rating
WFIR_RISKR Wildfire - Hazard Type Risk Index Rating
WFIR_RISKS Wildfire - Hazard Type Risk Index Score
WFIR_RISKV Wildfire - Hazard Type Risk Index Value
WNTW_AFREQ Winter Weather - Annualized Frequency
WNTW_ALRA Winter Weather - Expected Annual Loss Rate - Agriculture
WNTW_ALRB Winter Weather - Expected Annual Loss Rate - Building
WNTW_ALRP Winter Weather - Expected Annual Loss Rate - Population
WNTW_ALR_NPCTL Winter Weather - Expected Annual Loss Rate - National Percentile
WNTW_EALA Winter Weather - Expected Annual Loss - Agriculture Value
WNTW_EALB Winter Weather - Expected Annual Loss - Building Value
WNTW_EALP Winter Weather - Expected Annual Loss - Population
WNTW_EALPE Winter Weather - Expected Annual Loss - Population Equivalence
WNTW_EALR Winter Weather - Expected Annual Loss Rating
WNTW_EALS Winter Weather - Expected Annual Loss Score
WNTW_EALT Winter Weather - Expected Annual Loss - Total
WNTW_EVNTS Winter Weather - Number of Events
WNTW_EXPA Winter Weather - Exposure - Agriculture Value
WNTW_EXPB Winter Weather - Exposure - Building Value
WNTW_EXPP Winter Weather - Exposure - Population
WNTW_EXPPE Winter Weather - Exposure - Population Equivalence
WNTW_EXPT Winter Weather - Exposure - Total
WNTW_EXP_AREA Winter Weather - Exposure - Impacted Area (sq mi)
WNTW_HLRA Winter Weather - Historic Loss Ratio - Agriculture
WNTW_HLRB Winter Weather - Historic Loss Ratio - Buildings
WNTW_HLRP Winter Weather - Historic Loss Ratio - Population
WNTW_HLRR Winter Weather - Historic Loss Ratio - Total Rating
WNTW_RISKR Winter Weather - Hazard Type Risk Index Rating
WNTW_RISKS Winter Weather - Hazard Type Risk Index Score
WNTW_RISKV Winter Weather - Hazard Type Risk Index Value

SSL/TLS information

Use modern security software and cipher suites.

Ready to get started?