API Reference

Every Business can have different addresses. Each address has a source attribute that show where was that information obtained

This fields contains an array filled with Addresses Objects. They represents all the addresses we found for a given business.


The Addresss Object

PropertyTypeDescription
streetStringTrue if the business is registered in the tax office
provinceStringAddress provincer
cityStringAddress city
stateString Address state
postal_codeIntegerAddress postal code (zip code)
full_addressStringThe full address in a human format
sourceStringRepresents the datasource where the address was obtained.
created_atStringISO 3166-1 date.

The complete JSON representation of the resource

{ "addresses": [ { "street": "padre hurtado 8466", "province": "la florida", "city": "santiago", "state": "region metropolitana", "postal_code": null, "full_address": "padre hurtado 8466, la florida, santiago, region metropolitana", "source": "mop", "created_at": "2022-05-06" }, { "street": null, "province": "LA FLORIDA", "city": null, "state": "Region METROPOLITANA DE SANTIAGO", "postal_code": null, "full_address": "LA FLORIDA, Region METROPOLITANA DE SANTIAGO", "source": "constitution", "created_at": "2022-05-13" } ] }