Skip to main content
Locations define where you want to search. Every property and people search requires at least one location. You can include up to 15 locations per request, and they are combined with OR logic. Results matching any of the locations are returned.
Locations are separate from filters. Filters narrow what you’re looking for (equity, property type, owner details). Locations define where you’re looking.

How Locations Work

Locations are passed alongside filters in your search request. While filters use AND logic (every filter must match), locations use OR logic. A record only needs to match one of your locations to be included.
This searches for results in Texas OR ZIP code 90210, then applies all filters on top.

Location Types

Each location object requires a type field that determines its shape. For standard location types (state, county, city, zip_code), the identifier is always passed in a uniform code field:

state

Search an entire US state using its two-letter abbreviation.

county

Search a specific county using its FIPS code.
Not sure what FIPS code to use? Use the List Locations endpoint to look up counties by name and get their FIPS codes. For example, searching "Harris" returns Harris County, TX with code "48201".

city

Search a specific city using its DealMachine place ID.
Search the List Locations endpoint with type=city to find the right place ID. For example, searching "Austin" with state=TX returns Austin, TX with code "7333". Common abbreviations are normalized, so "St. Louis" and "Saint Louis" return the same matching city names.

zip_code

Search a specific ZIP code area.

radius

Search a circular area around a geographic point. Useful for targeting a neighborhood or proximity to a specific address.

polygon

Search a custom-drawn area defined by a series of coordinate pairs. The polygon is automatically closed. You do not need to repeat the first coordinate at the end.
Coordinate pairs use longitude-first order: [longitude, latitude]. This follows the GeoJSON standard and is the opposite of how coordinates are typically spoken (“lat/long”).

bounds

Search a rectangular area defined by its four edges. This is the simplest way to search a map viewport or any rectangular region. Pass the north, south, east, and west boundaries.
The bounds type is equivalent to a polygon with four corners. Use it when you have a rectangular area (like a map viewport) and don’t want to construct coordinate pairs manually.

Location Logic

Locations use OR logic. A record is included if it falls within any of the provided locations:
This returns properties valued between 200k200k–500k that are in Harris County, TX OR Dallas County, TX OR ZIP code 78704. Think of it this way:
  • Locations define your search area (OR, expand the area)
  • Filters narrow your results within that area (AND, tighten the criteria)

Limits

Complete Example

Find high-equity absentee-owned properties across multiple locations in Texas:

Common Patterns

Add each ZIP code as a separate location object. They combine with OR logic, so results in any of the ZIP codes are returned.
You can combine any location types in a single request. For example, search an entire state plus specific ZIP codes in another state:
Use a radius location to search around a specific point. This is useful when you have an address or intersection you want to target:
Pass the edges of a rectangular area. This is the easiest way to search what’s visible on a map:
Draw a precise boundary using polygon coordinates. Useful for irregular areas like neighborhoods, school districts, or custom territories:

Searching

The full search workflow including locations, filters, fields, and pagination.

Filters

Narrow results within your locations using filter criteria.

Credits

Understand how search requests consume credits.

Response Format

Understand the data + pagination response envelope.