Given this input:
Street: university ave
City: provo
State: ut
ZIP Code: 84604
The output is an array of JSON objects that each have the expected address fields and analysis. Notice that the candidate id increments with each item in the response array:
[
{
"input_index": 0,
"candidate_index": 0,
"addressee": "Centaur",
"delivery_line_1": "N University Ave",
"last_line": "Provo UT 84604-5699",
"delivery_point_barcode": "846045699991",
"components": {
"street_predirection": "N",
"street_name": "University",
"street_suffix": "Ave",
"city_name": "Provo",
"state_abbreviation": "UT",
"zipcode": "84604",
"plus4_code": "5699",
"delivery_point": "99",
"delivery_point_check_digit": "1"
},
"metadata": {
"record_type": "F",
"county_fips": "49049",
"county_name": "Utah",
"carrier_route": "R003",
"congressional_district": "03"
},
"analysis": {
"dpv_match_code": "Y",
"dpv_footnotes": "AABBM1",
"dpv_cmra": "N",
"dpv_vacant": "N",
"ews_match": false
}
},
{
"input_index": 0,
"candidate_index": 1,
"delivery_line_1": "811 N University Ave",
"last_line": "Provo UT 84604-3417",
"delivery_point_barcode": "846043417111",
"components": {
"primary_number": "811",
"street_predirection": "N",
"street_name": "University",
"street_suffix": "Ave",
"city_name": "Provo",
"state_abbreviation": "UT",
"zipcode": "84604",
"plus4_code": "3417",
"delivery_point": "11",
"delivery_point_check_digit": "1"
},
"metadata": {
"record_type": "S",
"county_fips": "49049",
"county_name": "Utah",
"carrier_route": "C018",
"congressional_district": "03",
"building_default_indicator": "Y"
},
"analysis": {
"dpv_match_code": "D",
"dpv_footnotes": "AAN1",
"dpv_cmra": "N",
"dpv_vacant": "N",
"ews_match": false,
"footnotes": "H#"
}
},
{
"input_index": 0,
"candidate_index": 2,
"delivery_line_1": "836 N University Ave",
"last_line": "Provo UT 84604-6509",
"delivery_point_barcode": "846046509990",
"components": {
"primary_number": "836",
"street_predirection": "N",
"street_name": "University",
"street_suffix": "Ave",
"city_name": "Provo",
"state_abbreviation": "UT",
"zipcode": "84604",
"plus4_code": "6509",
"delivery_point": "99",
"delivery_point_check_digit": "0"
},
"metadata": {
"record_type": "H",
"county_fips": "49049",
"county_name": "Utah",
"carrier_route": "C018",
"congressional_district": "03",
"building_default_indicator": "Y"
},
"analysis": {
"dpv_match_code": "D",
"dpv_footnotes": "AAN1",
"dpv_cmra": "N",
"dpv_vacant": "N",
"ews_match": false,
"footnotes": "H#"
}
},
{
"input_index": 0,
"candidate_index": 3,
"delivery_line_1": "850 N University Ave",
"last_line": "Provo UT 84604-3496",
"delivery_point_barcode": "846043496998",
"components": {
"primary_number": "850",
"street_predirection": "N",
"street_name": "University",
"street_suffix": "Ave",
"city_name": "Provo",
"state_abbreviation": "UT",
"zipcode": "84604",
"plus4_code": "3496",
"delivery_point": "99",
"delivery_point_check_digit": "8"
},
"metadata": {
"record_type": "H",
"county_fips": "49049",
"county_name": "Utah",
"carrier_route": "C018",
"congressional_district": "03",
"building_default_indicator": "Y"
},
"analysis": {
"dpv_match_code": "D",
"dpv_footnotes": "AAN1",
"dpv_cmra": "N",
"dpv_vacant": "N",
"ews_match": false,
"footnotes": "H#"
}
},
{
"input_index": 0,
"candidate_index": 4,
"delivery_line_1": "872 N University Ave",
"last_line": "Provo UT 84604-3495",
"delivery_point_barcode": "846043495999",
"components": {
"primary_number": "872",
"street_predirection": "N",
"street_name": "University",
"street_suffix": "Ave",
"city_name": "Provo",
"state_abbreviation": "UT",
"zipcode": "84604",
"plus4_code": "3495",
"delivery_point": "99",
"delivery_point_check_digit": "9"
},
"metadata": {
"record_type": "H",
"county_fips": "49049",
"county_name": "Utah",
"carrier_route": "C018",
"congressional_district": "03",
"building_default_indicator": "Y"
},
"analysis": {
"dpv_match_code": "D",
"dpv_footnotes": "AAN1",
"dpv_cmra": "N",
"dpv_vacant": "N",
"ews_match": false,
"footnotes": "H#"
}
},
// etc...
]
You can try out other addresses and see the results on the REST API management page.