Property Lookup

In addition to fsid and coordinate lookups, a property can also be searched from address, APN (Accessor Parcel Number) and Lightbox LocationID

Address

Address lookup takes a full address and attempts to match it with an existing entry within our database. An address lookup is the slowest form of a lookup, please use sparingly.

query {
    propertyByAddress(
        address: String!
        lat: Float
        lng: Float
    ): Property
}

APN

Accessor Parcel Number lookup provides a 1:1 lookup for an APN. APNs must be combined with a county FIPS code in order to represent a successful lookup.

query {
    propertyByAPN(APN: String!FIPS: String!): Property
}

LocationId

A LocationId represents the ID provided from Lightbox (DMP). This serves as a convenience function for Lightbox data matching. It is important to note that a LocationID may not be unique.

query {
    propertyByLocationId(locationId: String!): Property
}

Last updated