# Address The `address` object represents a postal or contact address used throughout Finqu, such as for customers, orders, shipping, and billing. It provides access to all standard address fields, including names, company details, contact information, and geolocation data. ## Usage Example ```liquid
{{ address.name }}
{{ address.company }}
{{ address.address1 }}
{% if address.address2 %}{{ address.address2 }}
{% endif %} {{ address.zipcode }} {{ address.city }}
{{ address.country.name }}
{% if address.phone %}Phone: {{ address.phone }}
{% endif %} {% if address.email %}Email: {{ address.email }}
{% endif %}
``` ## Properties Below are the available properties for the `address` object: ### address1 Returns the value of address1 field in the address. ### address2 Returns the value of address2 field in the address. ### city Returns the value of city field in the address. ### company Returns the value of company field in the address. ### company_id Returns the value of company_id field in the address. ### country Returns the country object for the corresponding [country](/reference/liquid/objects/store/country/) in the address. ### country_code Returns the value of country_code field in the address. ### email Returns the value of email field in the address. ### first_name Returns the value of first_name field in the address. ### info Returns the value of info in the address if such is set. ### last_name Returns the value of last_name field in the address. ### latitude Returns the value of latitude in the address if such is set. ### longitude Returns the value of longitude in the address if such is set. ### name Returns the name. ### phone Returns the value of phone field in the address. ### state_code Returns the value of state_code field in the address. ### vat_number Returns the value of vat_number field in the address. ### zipcode Returns the value of zipcode field in the address.