Skip to content

Address

A mailing address and a collection of addresses for a person or organization.

A mailing address.

PropertyTypeRequiredDescription
street1stringYesThe primary street address line.
street2stringNoAdditional street address information (e.g., apartment number, suite, etc.).
citystringYesThe city or municipality name.
stateOrProvincestringYesThe state, province, or region name.
countrystringYesThe country name or ISO country code.
postalCodestringYesThe postal or ZIP code for the address.
latitudenumberNoThe latitude coordinate of the address location.
longitudenumberNoThe longitude coordinate of the address location.
geographyRecordUnknownNoAdditional geospatial data in GeoJSON format.
periodAddressPeriodNoThe time period during which the address was occupied.
{
"street1": "123 Main St",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
}

The time period during which a household or person occupied an address. `endDate` is `null` (or omitted) for currently-occupied addresses; `isCurrent` is the authoritative signal regardless of date values.

PropertyTypeRequiredDescription
startDateisoDateYesThe date the address was first occupied, in ISO 8601 (YYYY-MM-DD).
endDateisoDate | nullNoThe date the address was vacated. `null` if currently occupied.
isCurrentbooleanYes`true` if this is the current address.
{
"startDate": "2020-01-01",
"endDate": "2023-05-31",
"isCurrent": false
}

A collection of addresses with named slots for residential and mailing addresses plus an open map of additional addresses keyed by a caller-defined label (e.g., "previous", "work", "satellite").

PropertyTypeRequiredDescription
residentialAddressYesThe primary residential address.
mailingAddressNoThe mailing address, if different from the residential address.
otherAddressesRecordAddressNoAdditional addresses keyed by a caller-defined label (e.g., "previous", "work").
{
"residential": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"mailing": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"otherAddresses": {
"satellite": {
"street1": "456 Main St",
"street2": "Suite 100",
"city": "Anytown",
"stateOrProvince": "CA",
"country": "US",
"postalCode": "12345"
},
"international": {
"street1": "123 Rue Principale",
"city": "Montreal",
"stateOrProvince": "QC",
"country": "CA",
"postalCode": "H2Y 1C6"
}
}
}