Learn how the Square API model works with address information.
The address format used by Square is based on an open-source library from Google. For more information, see AddressValidationMetadata.
Addresses are stored using the free-form data entry fields address_line_1
and address_line_2
so that people can represent their addresses in any way they need. Other address components, such as postal_code
, locality
(city), and administrative_district_level_1
(state, prefecture, or province) are broken out into their own fields because software sometimes behaves differently based on them. For example, sales tax software might charge different amounts of sales tax based on the postal code and some software is only available in certain states due to compliance reasons.
Most addresses contain each of these fields, but their meanings differ based on the locality. The following table shows details about what each address field represents for each country in which Square operates:
Address field | United States | Canada | Australia | United Kingdom | Ireland | France | Spain |
---|---|---|---|---|---|---|---|
address_line_1 | Address line 1 | Address line 1 | Address line 1 | Address line 1 | Address line 1 | Address line 1 | Address line 1 |
address_line_2 | Address line 2 | Address line 2 | Address line 2 | Address line 2 | Address line 2 | Address line 2 | Address line 2 |
locality | City | City | Suburb | Town | Town/city | City | Locality |
administrative_district_level_1 | State | Province | State | (blank) | County | (blank) | Province |
postal_code | ZIP code | Postal code | Postal code | Postal code | Eircode | Postcode | Postal code |
Note
An Address
is stored as a subtype of the object containing it, such as a Location
or Customer
. Addresses aren't stored independently of these objects. Use the Locations API or Customers API to access information about locations or customers, respectively, including their addresses.
Square products (such as Square Point of Sale and the Square Dashboard) mostly use a seller's language preference for communication. However, when it comes to addresses, the language preference is overridden: Square products use English for a US address, French for an address in France, and so on.
Addresses in the Square data model look slightly different depending on the country in which the address is located. The following are example addresses for each country in which Square operates.
{
"address": {
"address_line_1": "1955 Broadway",
"address_line_2": "Suite 600",
"locality": "Oakland",
"administrative_district_level_1": "CA",
"postal_code": "94612",
"country": "US"
}
}
{
"address": {
"address_line_1": "520 Maple Street",
"address_line_2": "Floor 2",
"locality": "Toronto",
"administrative_district_level_1": "Ontario",
"postal_code": "M6K1L5",
"country": "CA"
}
}
{
"address": {
"address_line_1": "300 Main Street",
"locality": "Melbourne",
"administrative_district_level_1": "VIC",
"postal_code": "3000",
"country": "AU"
}
}
{
"address": {
"address_line_1": "9 Main Street",
"address_line_2": "Level 4",
"locality": "London",
"postal_code": "W1A3AE",
"country": "GB"
}
}
{
"address": {
"address_line_1": "43 Main Street",
"address_line_2": "The Liberties",
"locality": "Dublin 20",
"administrative_district_level_1": "Co. Dublin",
"postal_code": "D08XK58",
"country": "IE"
}
}
{
"address": {
"address_line_1": "Chez Mireille COPEAU Apartment 3",
"address_line_2": "Entrée A Bâtiment Jonquille",
"postal_code": "33380 MIOS",
"locality": "CAUDOS",
"country": "FR"
}
}
{
"address": {
"address_line_1": "Julia Machado García",
"address_line_2": "Calle del Ejemplo, 195",
"postal_code": "08226",
"locality": "TERRASSA",
"administrative_district_level_1": "BARCELONA",
"country": "ES"
}
}