v1

latestOpenAPI 3.1.02026-07-24100171.6 KB

Rent Estimate

Returns a property rent estimate and comparable properties.

get/avm/rent/long-term

Query parameters

addressstring

The full address of the property, in the format Street, City, State, Zip. You need to provide either the address or the latitude/longitude parameters

latitudenumber float

The latitude of the property. The latitude/longitude can be provided instead of the address parameter

longitudenumber float

The longitude of the property. The latitude/longitude can be provided instead of the address parameter

propertyType'Single Family' | 'Condo' | 'Townhouse' | 'Manufactured' | 'Multi-Family' | 'Apartment'

The type of the property. See explanation of property types

bedroomsnumber float

The number of bedrooms in the property. Use 0 to indicate a studio layout

bathroomsnumber float

The number of bathrooms in the property. Supports fractions to indicate partial bathrooms

squareFootagenumber float

The total living area size of the property, in square feet

maxRadiusnumber float

The maximum distance between comparable listings and the subject property, in miles

daysOldinteger

The maximum number of days since comparable listings were last seen on the market, with a minimum of 1

compCountinteger

The number of comparable listings to use when calculating the rent estimate, between 5 and 25. Defaults to 15 if not provided

lookupSubjectAttributesboolean

When enabled, will attempt to look up subject property attributes to find more relevant comps. Defaults to true if not provided. Learn more about this feature

Response

Success

rentnumber
rentRangeLownumber
rentRangeHighnumber

Example response

{
  "rent": 1620,
  "rentRangeLow": 1550,
  "rentRangeHigh": 1690,
  "subjectProperty": {
    "id": "5500-Grand-Lake-Dr,-San-Antonio,-TX-78244",
    "formattedAddress": "5500 Grand Lake Dr, San Antonio, TX 78244",
    "addressLine1": "5500 Grand Lake Dr",
    "city": "San Antonio",
    "state": "TX",
    "stateFips": "48",
    "zipCode": "78244",
    "county": "Bexar",
    "countyFips": "029",
    "latitude": 29.476011,
    "longitude": -98.351454,
    "propertyType": "Single Family",
    "bedrooms": 3,
    "bathrooms": 2,
    "squareFootage": 1878,
    "lotSize": 8843,
    "yearBuilt": 1973,
    "lastSaleDate": "2024-11-18T00:00:00.000Z",
    "lastSalePrice": 270000
  },
  "comparables": [
    {
      "id": "7306-Kingsland-Dr,-San-Antonio,-TX-78244",
      "formattedAddress": "7306 Kingsland Dr, San Antonio, TX 78244",
      "addressLine1": "7306 Kingsland Dr",
      "city": "San Antonio",
      "state": "TX",
      "stateFips": "48",
      "zipCode": "78244",
      "county": "Bexar",
      "countyFips": "029",
      "latitude": 29.473782,
      "longitude": -98.344684,
      "propertyType": "Single Family",
      "bedrooms": 3,
      "bathrooms": 2,
      "squareFootage": 1835,
      "lotSize": 7405,
      "yearBuilt": 1997,
      "status": "Inactive",
      "price": 1627,
      "listingType": "Standard",
      "listedDate": "2025-02-06T00:00:00.000Z",
      "removedDate": "2025-02-07T00:00:00.000Z",
      "lastSeenDate": "2025-02-06T05:09:03.727Z",
      "daysOnMarket": 1,
      "distance": 0.4359,
      "daysOld": 210,
      "correlation": 0.9873
    }
  ]
}