RentalAVMRequest
Rental AVM request model. Used by: POST /v1/avm/rental
location objectrequired
Location input for AVM requests. Provide either address OR latitude + longitude.
Used by all AVM endpoints (property, rental, multifamily) in both single and batch modes.
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. All fields are optional with sensible defaults.
Used by all AVM endpoints (property, rental, multifamily) in both single and batch modes.
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.
Used by: POST /v1/avm/rental, GET /v1/avm/rental, POST /v1/avm/batch/rental
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 furnished. Defaults to false if omitted.
Property 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
Condition (0-5). 1=poor, 2=fair, 3=average, 4=good, 5=excellent.
Possible values: >= 0 and <= 5
Has central air
Has in-unit laundry
Has off-street parking
{
"location": {
"address": "456 Oak Ave, Tampa, FL 33602"
},
"property_fields": {
"units": [
{
"bedrooms": 2,
"bathrooms": 1
}
],
"property_type": "houses"
},
"search_params": {
"radius_mi": 5,
"num_comps": 5
}
}