improved
Address components in Retrieve Project API
7 months ago by Andriy Mysyk
You can now view the parsed components of the property_address
in Retrieve Project API, including street_address
, city
, region
, postal_code
, and country
. With the postal_code
component, for example, you can apply logic in your IT ecosystem that leverages a property’s zip code without the need to parse property_address
first.
"location": {
"property_address": "434 Brannan St, San Francisco, CA 94107, USA",
"latitude": 37.77960043,
"longitude": -122.39530086,
"property_address_components": {
"street_address": "434 Brannan St",
"city": "San Francisco",
"region": "CA",
"postal_code": "94107",
"country": "United States"
}
}