Skip to content

Address

The Address object includes the data elements that represent a home’s address. It is currently one of the object types that is resolved in the response from the sellerLeads query, but it can be reused in other queries as well.

type Address {
street: String!
state: String!
postalCode: String!
city: String!
}
FieldTypeDescription
streetString!The address’s street data, such as house number and street name. It will also include the unit # and other info that is needed to locate the home that this address points to.
stateString!The address’s state. Will be the abbreviation of the state. For example, Arizona will be returned as AZ.
postalCodeString!The address’s postal code.
cityString!The address’s city.