Returns comparable properties for a given location based on property type and number of bedrooms. Properties are sourced from predefined value clusters based on geographical boundaries.
Parameter | Type | Required | Description |
---|---|---|---|
lat | float | Yes | Latitude of the target property |
lng | float | Yes | Longitude of the target property |
propertyType | string | Yes | Type of property ('single_family', 'condo', 'multi_family', 'townhouse') |
bedrooms | integer | No | Number of bedrooms |
/access/comps?lat=32.8165&lng=-96.6245&propertyType=single_family&bedrooms=4
/access/comps?lat=32.8115&lng=-96.6238&propertyType=single_family&bedrooms=3
/access/comps?lat=32.8065&lng=-96.6230&propertyType=single_family&bedrooms=3
{ "status": "success", "property": { "latitude": 32.8165, "longitude": -96.6245, "type": "single_family", "bedrooms": "4" }, "analysis": { "totalComparables": 8, "medianPrice": "$325,000", "averagePrice": "$328,750", "lastUpdated": "January 14, 2025" }, "comparables": [ { "address": "3737 Town East Blvd", "basicInfo": { "bedrooms": 4, "bathrooms": 2, "squareFeet": 1856, "yearBuilt": 1985, "lotSize": "0.25 acres" }, "lastSale": { "price": "$325,000", "date": "January 5, 2024" }, "location": { "latitude": 32.8165, "longitude": -96.6245 }, "viewOnZillow": "https://www.zillow.com/homes/..." } ] }
{ "status": "error", "message": "Location not in any known value cluster", "property": { "latitude": 32.8165, "longitude": -96.6245, "type": "single_family", "bedrooms": "4" } }
{ "status": "error", "message": "No comparable properties found in this cluster", "property": { "latitude": 32.8165, "longitude": -96.6245, "type": "single_family", "bedrooms": "4" } }
{ "status": "error", "message": "Internal server error message", "property": { "latitude": 32.8165, "longitude": -96.6245, "type": "single_family", "bedrooms": "4" } }