Identify Comparables
Instant comparables for any subject property in the US
Given a subject property, you can query this endpoint to find comparable properties. We developed a proprietary similarity score to rank candidate properties based on their similarity to the subject property. This API endpoint is useful for real estate professionals looking to find comparable properties for valuation, analysis, or market research purposes.
The score is based on the following features:
- Distance: The distance between the subject property and the comparable property.
- Market Characteristics: Similarity in demographics, transportation facilities, and other market characteristics.
- Number of Units: The number of units in the building.
- Year Built: The year the building was built. When not available online, we use Computer Vision models to detect the year built from the pictures.
- Number of Stories: The number of stories in the building. When not availability online, we use Computer Vision models to detect the number of stories from the pictures.
- Quality: The quality of the buildings, estimated from the pictures and the description.
- Building Amenities: The amenities available in the building. We use Natural Language Processing to extract this information from the text present on property’s websites.
- Unit Amenities: The amenities available in the unit. We use Natural Language Processing to extract this information from the text present on property’s websites.
- Unit Mix: The mix of units in the building. We compare unit types pair-wise to calculate the similarity score.
This endpoint is free! Refine your comparables as much as needed.
Get Comparable Properties
This will return a list of properties that are similar to the subject property. The list is sorted by similarity score in descending order.
Each property simplified payload gives you high-level information, such that you can decide which properties to explore further:
Add constraints to the comparables
You might have specific requirements for the properties you are looking for. You can add constraints to the request to filter the results:
- Set distance limits (
maxDistance
) - Filter by units (
minNumberUnits
,maxNumberUnits
) - Filter by year built (
minYearBuilt
,maxYearBuilt
) - Filter by number of stories (
minNumberStories
,maxNumberStories
)
Exclude and Include specific properties
- If you have already seen some properties and want to exclude them from the results, you can add their
id
to theexcluded_ids
array in the request. They will not appear in the results. - You may also tell the API that you want some specific properties to be selected. In that case, you can add their
id
to theselected_ids
array in the request. The API will return these properties first, and then iftopN
is high enough, it will also add best next comparables to the response.
Get the top N properties
You can also specify the number of properties you want to get in the response by setting the topN
parameter in the request.
You can request up to 50 comps most similar properties at once.
If you need more, you can make multiple requests with topN=50
and excluded_ids
set to the id
of the properties you have already seen.
We encourage you to query once with 50 properties and filter results in your application for speed and performance reasons.
Speed and performance
This endpoint aggregates a lot of data to provide you with the most relevant properties. Some requests might take longer than others, depending on the number of properties in the area and the complexity of the properties. Feel free to make multiple requests in parallel, but be aware that you might hit the rate limit, or slow down the response time if you make too many requests in a short period.
Full Documentation
Find more details about the API response in our API Reference.