RentalAVMRequest
Rental AVM request model.
location objectrequired
Location input for AVM requests.
Full street address
Latitude
Possible values: >= -90 and <= 90
Longitude
Possible values: >= -180 and <= 180
maps_api_response objectnullable
Pre-fetched Maps API response
Pre-fetched Maps API response
search_params object
Common search parameters for AVM requests.
Search radius in miles
Possible values: >= 0.1 and <= 10
5Months to look back
Possible values: >= 1 and <= 36
As-of date (YYYY-MM-DD)
Number of comparables to return (0 = subject-only, skips DB query)
Possible values: >= 0 and <= 20
0property_fields objectrequired
Rental-specific AVM fields.
units object[]required
List of rental units
Possible values: >= 1
Bedrooms in unit
Possible values: >= 0 and <= 10
Bathrooms in unit
Possible values: >= 0 and <= 10
Unit size in sqft
Possible values: >= 0
Is fully furnished
falseProperty type (houses, townhomes, condos, small_multifamily, multifamily)
Total units in the building (not units being valued). Defaults to 2 for small_multifamily, 1 for houses/condos/townhomes.
Possible values: >= 1
Walk score
Possible values: >= 0 and <= 100
Condition score (1-5)
Possible values: >= 0 and <= 5
Has central air
Has in-unit laundry
Has off-street parking
{
"location": {
"address": "string",
"latitude": 0,
"longitude": 0,
"maps_api_response": {}
},
"search_params": {
"radius_mi": 5,
"lookback_months": 0,
"date": "string",
"num_comparables": 0
},
"property_fields": {
"units": [
{
"bedrooms": 0,
"bathrooms": 0,
"size": 0,
"fully_furnished": false
}
],
"property_type": "string",
"total_units": 0,
"walk_score": 0,
"condition_score": 0,
"central_air": true,
"in_unit_laundry": true,
"off_street_parking": true
}
}