"ids_only" Searches for Credit Optimization & Multi-Step Workflows

ids_only [bool] helps you to run efficient property ID based workflows and flows including the Property Detail Bulk or other ID input endpoints afterwards for each search result

Property Search can pull up to 250 property records per API call. In order to keep response times far under 1 second, we only return a subset of the whole set of fields we have for each property in the Property Search responses.

Some of you may be wondering: "Well, do I have to spend 2 credits for each property to find it in the Search API and to get its full property details??" - The Answer is No!

In order to retrieve your search results from the Property Search API that match your criteria AND get the full Property Detail enrichment for each property, use our "ids_only" input parameter.


The max number of ids that can be returned per each ids_only: true Property Search API calls is 10,000.


{
  "state": "VA",
  "properties_owned_min": 2,
  "properties_owned_max": 10,
  "ids_only": true,
  "size": 10000
}

Will return a list of property IDs for all properties matching this query's search criteria.

// /v2/PropertyDetail

for (let propertyId of propertySearchResultIds) {
  
  let full_details = await propertyDetail({id: propertyId });
  
  //now the .linkedProperties are viewable in full_
}


FilterResponse Field Visible in Property Detail
auction: true.auctionInfo [object]
free_clear: false OR mortgage_min: 1 OR open_mortgages_min: 1.currentMortgages [array]
pre_foreclosure: true or foreclosure: true.foreclosureInfo [array]
properties_owned_min > 1 / max.linkedProperties [object]
mls_active or any other MLS related filter.mlsHistory [array]
neighborhood_id or neighborhood_name (from AutoComplete).neighborhood [object]
prior_owner_individual: true.priorOwnerInfo [object]
"last_sale_date_min/max" or any other sale related date/price filter.saleHistory [array] / .lastSale [object]